# HG changeset patch # User "Yann E. MORIN" # Date 1343768689 -7200 # Node ID 6f23aba032810c03a2418526dd860afe01564ede # Parent 7776e8369284bc091bb3a75e2174b7dd7f6b933b 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 [Fix suggested by Simon] Signed-off-by: "Yann E. MORIN" diff -r 7776e8369284 -r 6f23aba03281 kconfig/Makefile --- a/kconfig/Makefile Tue Jul 31 22:27:29 2012 +0200 +++ b/kconfig/Makefile Tue Jul 31 23:04:49 2012 +0200 @@ -47,7 +47,7 @@ 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?)