diff options
author | Yann E. MORIN" <yann.morin.1998@free.fr> | 2012-07-31 23:04:49 +0200 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@free.fr> | 2012-07-31 23:04:49 +0200 |
commit | 00316d987557a96bfd5239c87963b7ad1e3c42bd (patch) | |
tree | c6c94f0b36448d39975bf17486de0466e53e8c6f | |
parent | 52b7a1973eba216a6c8c0f554e78b04b95d946ae (diff) | |
download | crosstool-ng-00316d987557a96bfd5239c87963b7ad1e3c42bd.tar.gz crosstool-ng-00316d987557a96bfd5239c87963b7ad1e3c42bd.tar.bz2 crosstool-ng-00316d987557a96bfd5239c87963b7ad1e3c42bd.zip |
kconfig: fix ncurses headers location
On some distors (eg. latesst openSuSE), the ncurses headers are not
located in the usual location.
Hard-code this location in the kconfig Makefile, as a (temporary?)
workaround.
Reported-by: Simon Gornall <sgornall@apple.com>
[Fix suggested by Simon]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
-rw-r--r-- | kconfig/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kconfig/Makefile b/kconfig/Makefile index a3f1770e..93b3fe60 100644 --- a/kconfig/Makefile +++ b/kconfig/Makefile @@ -47,7 +47,7 @@ mconf: LDFLAGS += $(NCURSES_LDFLAGS) nconf_SRC = nconf.c nconf.gui.c nconf_OBJ = $(patsubst %.c,%.o,$(nconf_SRC)) nconf_DEP = $(patsubst %.c,%.dep,$(nconf_SRC)) -$(nconf_OBJ) $(nconf_DEP): CFLAGS += $(INTL_CFLAGS) +$(nconf_OBJ) $(nconf_DEP): CFLAGS += $(INTL_CFLAGS) -I/usr/include/ncurses nconf: LDFLAGS += -lmenu -lpanel -lncurses # Under Cygwin, we need to auto-import some libs (which ones, exactly?) |