diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-16 17:35:34 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-16 17:35:34 -0500 |
commit | 287b901dcadd7eb3c5aa93b679bbad4058814921 (patch) | |
tree | f7fd50888b456b559ef58892b33f2f263a49a0a6 /scripts/kconfig/Makefile | |
parent | c63dbbd5268c397f051e0e0f665799ef64a1f3a4 (diff) | |
parent | 30c4eaafac80cc110efa66d2dfc551386eefdf53 (diff) |
Merge branch 'kconfig' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild
* 'kconfig' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild:
menuconfig: fix a regression when canceling the prompt dialog at exit
kbuild: Fix compiler warning with assertion when calling 'fwrite'
Improve update-po-config output
menuconfig: let make not report error when not save configuration
merge_config.sh: fix bug in final check
merge_config.sh: whitespace cleanup
merge_config.sh: use signal names compatible with dash and bash
kconfig: add merge_config.sh script
kconfig: use xfwrite wrapper function to silence warnings
kconfig: fix set but not used warnings
kconfig: fix warnings by specifing format arguments
Diffstat (limited to 'scripts/kconfig/Makefile')
-rw-r--r-- | scripts/kconfig/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index 914833d99b06..79662658fb91 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile | |||
@@ -50,9 +50,8 @@ localyesconfig localmodconfig: $(obj)/streamline_config.pl $(obj)/conf | |||
50 | 50 | ||
51 | # Create new linux.pot file | 51 | # Create new linux.pot file |
52 | # Adjust charset to UTF-8 in .po file to accept UTF-8 in Kconfig files | 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 | update-po-config: $(obj)/kxgettext $(obj)/gconf.glade.h | 53 | update-po-config: $(obj)/kxgettext $(obj)/gconf.glade.h |
55 | $(Q)echo " GEN config" | 54 | $(Q)echo " GEN config.pot" |
56 | $(Q)xgettext --default-domain=linux \ | 55 | $(Q)xgettext --default-domain=linux \ |
57 | --add-comments --keyword=_ --keyword=N_ \ | 56 | --add-comments --keyword=_ --keyword=N_ \ |
58 | --from-code=UTF-8 \ | 57 | --from-code=UTF-8 \ |
@@ -63,10 +62,11 @@ update-po-config: $(obj)/kxgettext $(obj)/gconf.glade.h | |||
63 | $(Q)(for i in `ls $(srctree)/arch/*/Kconfig \ | 62 | $(Q)(for i in `ls $(srctree)/arch/*/Kconfig \ |
64 | $(srctree)/arch/*/um/Kconfig`; \ | 63 | $(srctree)/arch/*/um/Kconfig`; \ |
65 | do \ | 64 | do \ |
66 | echo " GEN $$i"; \ | 65 | echo " GEN $$i"; \ |
67 | $(obj)/kxgettext $$i \ | 66 | $(obj)/kxgettext $$i \ |
68 | >> $(obj)/config.pot; \ | 67 | >> $(obj)/config.pot; \ |
69 | done ) | 68 | done ) |
69 | $(Q)echo " GEN linux.pot" | ||
70 | $(Q)msguniq --sort-by-file --to-code=UTF-8 $(obj)/config.pot \ | 70 | $(Q)msguniq --sort-by-file --to-code=UTF-8 $(obj)/config.pot \ |
71 | --output $(obj)/linux.pot | 71 | --output $(obj)/linux.pot |
72 | $(Q)rm -f $(obj)/config.pot | 72 | $(Q)rm -f $(obj)/config.pot |