summaryrefslogtreecommitdiff
path: root/kconfig/Makefile
diff options
context:
space:
mode:
authorBryan Hundven <bryanhundven@gmail.com>2015-11-16 02:20:25 (GMT)
committerBryan Hundven <bryanhundven@gmail.com>2015-11-16 02:20:25 (GMT)
commit6ac8e31a519f41af7838bb5261e0fe989fb428bd (patch)
treefc2153841162e1b9d052421538526c7d526adbf7 /kconfig/Makefile
parent4b5f10df03e21ea346625f5009b893c8ad5d5f90 (diff)
parent6c49a232a81cf4f4f22a13b13e91af74e7edab32 (diff)
Merge pull request #262 from bhundven/fix_ncurses_tinfo
configure: Correctly search for tinfo for kconfig
Diffstat (limited to 'kconfig/Makefile')
-rw-r--r--kconfig/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/kconfig/Makefile b/kconfig/Makefile
index 27482af..9f30566 100644
--- a/kconfig/Makefile
+++ b/kconfig/Makefile
@@ -48,7 +48,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) -I/usr/include/ncurses
-nconf: LDFLAGS += -lmenu -lpanel -lncurses
+nconf: LDFLAGS += -lmenu -lpanel $(LIBS)
# These are generated files:
ALL_OBJS = $(sort $(COMMON_OBJ) $(LX_OBJ) $(conf_OBJ) $(mconf_OBJ) $(nconf_OBJ))