Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 19816
b: refs/heads/master
c: 5e375bc
h: refs/heads/master
v: v3
  • Loading branch information
Robb, Sam authored and Linus Torvalds committed Feb 5, 2006
1 parent 62d84ff commit d7eaf27
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4be68a783d25b4dab0ef4077a4c6b13161a2d6e4
refs/heads/master: 5e375bc7d586e0df971734a5a5f1f080ffd89b68
12 changes: 11 additions & 1 deletion trunk/scripts/kconfig/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,17 @@ KBUILD_HAVE_NLS := $(shell \
then echo yes ; \
else echo no ; fi)
ifeq ($(KBUILD_HAVE_NLS),no)
HOSTCFLAGS += -DKBUILD_NO_NLS
HOSTCFLAGS += -DKBUILD_NO_NLS
else
KBUILD_NEED_LINTL := $(shell \
if echo -e "\#include <libintl.h>\nint main(int a, char** b) { gettext(\"\"); return 0; }\n" | \
$(HOSTCC) $(HOSTCFLAGS) -x c - -o /dev/null> /dev/null 2>&1 ; \
then echo no ; \
else echo yes ; fi)
ifeq ($(KBUILD_NEED_LINTL),yes)
HOSTLOADLIBES_conf += -lintl
HOSTLOADLIBES_mconf += -lintl
endif
endif

# generated files seem to need this to find local include files
Expand Down

0 comments on commit d7eaf27

Please sign in to comment.