Commit e2aef4d33ac43ec45e4fc2903288030d7f464832

Authored by Peter Foley
Committed by Michal Marek
1 parent c55ac15401

Improve update-po-config output

Make the V=0 output from update-po-config be aligned correctly.
Also remove an outdated comment and add a "GEN" statement.

Signed-off-by: Peter Foley <pefoley2@verizon.net>
Signed-off-by: Michal Marek <mmarek@suse.cz>

Showing 1 changed file with 3 additions and 3 deletions Side-by-side Diff

scripts/kconfig/Makefile
... ... @@ -50,9 +50,8 @@
50 50  
51 51 # Create new linux.pot file
52 52 # Adjust charset to UTF-8 in .po file to accept UTF-8 in Kconfig files
53   -# The symlink is used to repair a deficiency in arch/um
54 53 update-po-config: $(obj)/kxgettext $(obj)/gconf.glade.h
55   - $(Q)echo " GEN config"
  54 + $(Q)echo " GEN config.pot"
56 55 $(Q)xgettext --default-domain=linux \
57 56 --add-comments --keyword=_ --keyword=N_ \
58 57 --from-code=UTF-8 \
59 58  
... ... @@ -63,10 +62,11 @@
63 62 $(Q)ln -fs Kconfig.x86 arch/um/Kconfig
64 63 $(Q)(for i in `ls $(srctree)/arch/*/Kconfig`; \
65 64 do \
66   - echo " GEN $$i"; \
  65 + echo " GEN $$i"; \
67 66 $(obj)/kxgettext $$i \
68 67 >> $(obj)/config.pot; \
69 68 done )
  69 + $(Q)echo " GEN linux.pot"
70 70 $(Q)msguniq --sort-by-file --to-code=UTF-8 $(obj)/config.pot \
71 71 --output $(obj)/linux.pot
72 72 $(Q)rm -f $(srctree)/arch/um/Kconfig