diff options
author | Yuri Vasilevski <yvasilev@imap.cc> | 2005-11-07 00:57:53 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-07 07:53:23 -0800 |
commit | 4ecc65e423ef10bdbec12362609b15fa8e8627c8 (patch) | |
tree | 476a74971a0bddde29ed403a9fbb9b591b5d8152 /scripts/kconfig/Makefile | |
parent | 7d24f0b8a53261709938ffabe3e00f88f6498df9 (diff) | |
download | op-kernel-dev-4ecc65e423ef10bdbec12362609b15fa8e8627c8.zip op-kernel-dev-4ecc65e423ef10bdbec12362609b15fa8e8627c8.tar.gz |
[PATCH] typo correction for fix-build-on-nls-free-systems
A typo fix for fix-build-on-nls-free-systems.patch that caused all systems
to be detected as not having NLS.
Signed-off-by: Yuri Vasilevski <yvasilev@duke.math.cinvestav.mx>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'scripts/kconfig/Makefile')
-rw-r--r-- | scripts/kconfig/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index 455aeab..c65c435 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile @@ -118,7 +118,7 @@ clean-files := lkc_defs.h qconf.moc .tmp_qtcheck \ # Needed for systems without gettext KBUILD_HAVE_NLS := $(shell \ - if echo "\#include <libint.h>" | $(HOSTCC) $(HOSTCFLAGS) -E - > /dev/null 2>&1 ; \ + if echo "\#include <libintl.h>" | $(HOSTCC) $(HOSTCFLAGS) -E - > /dev/null 2>&1 ; \ then echo yes ; \ else echo no ; fi) ifeq ($(KBUILD_HAVE_NLS),no) |