diff options
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/kconfig/Makefile | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index 5760e057ec..d64aae85c3 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile | |||
| @@ -123,7 +123,17 @@ KBUILD_HAVE_NLS := $(shell \ | |||
| 123 | then echo yes ; \ | 123 | then echo yes ; \ |
| 124 | else echo no ; fi) | 124 | else echo no ; fi) |
| 125 | ifeq ($(KBUILD_HAVE_NLS),no) | 125 | ifeq ($(KBUILD_HAVE_NLS),no) |
| 126 | HOSTCFLAGS += -DKBUILD_NO_NLS | 126 | HOSTCFLAGS += -DKBUILD_NO_NLS |
| 127 | else | ||
| 128 | KBUILD_NEED_LINTL := $(shell \ | ||
| 129 | if echo -e "\#include <libintl.h>\nint main(int a, char** b) { gettext(\"\"); return 0; }\n" | \ | ||
| 130 | $(HOSTCC) $(HOSTCFLAGS) -x c - -o /dev/null> /dev/null 2>&1 ; \ | ||
| 131 | then echo no ; \ | ||
| 132 | else echo yes ; fi) | ||
| 133 | ifeq ($(KBUILD_NEED_LINTL),yes) | ||
| 134 | HOSTLOADLIBES_conf += -lintl | ||
| 135 | HOSTLOADLIBES_mconf += -lintl | ||
| 136 | endif | ||
| 127 | endif | 137 | endif |
| 128 | 138 | ||
| 129 | # generated files seem to need this to find local include files | 139 | # generated files seem to need this to find local include files |
