changeset 98:5174f1459c91

Make kconfig build on MacOS X. (Because it's there.)
author Rob Landley <rob@landley.net>
date Mon, 12 Feb 2007 19:59:12 -0500
parents 4c81e6375719
children 97d717829ff0
files kconfig/Makefile
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/kconfig/Makefile	Sun Feb 04 19:14:58 2007 -0500
+++ b/kconfig/Makefile	Mon Feb 12 19:59:12 2007 -0500
@@ -53,10 +53,10 @@
 
 kconfig/mconf: $(SHIPPED)
 	$(HOST_CC) -o $@ kconfig/{mconf.c,zconf.tab.c,lxdialog/*.c} \
-		-lcurses "-DCURSES_LOC=<ncurses.h>"
+		-lcurses -DCURSES_LOC="<ncurses.h>" -DKBUILD_NO_NLS=1
 
 kconfig/conf: $(SHIPPED)
-	$(HOST_CC) -o $@ kconfig/{conf.c,zconf.tab.c}
+	$(HOST_CC) -o $@ kconfig/{conf.c,zconf.tab.c} -DKBUILD_NO_NLS=1
 
 clean::
 	rm -f $(wildcard kconfig/*zconf*.c) kconfig/{conf,mconf}