summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2006-04-25 05:26:02 +0000
committerRussell Bryant <russell@russellbryant.com>2006-04-25 05:26:02 +0000
commit5267a6e6a22f003066cd6d80847b6ecdbfbc4125 (patch)
tree5497d221f272deffeefa8794fd92cd203df2b248
parented2918cfd1e2dd445f58c37ae73eb1f5d46a0987 (diff)
menuselect needs strcompat.o for strsep on Solaris
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@22344 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--Makefile2
-rw-r--r--build_tools/Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 7286a0d51..c2b27aae9 100644
--- a/Makefile
+++ b/Makefile
@@ -978,7 +978,7 @@ uninstall-all: _uninstall
menuselect: build_tools/menuselect makeopts.xml
-@build_tools/menuselect ${GLOBAL_MAKEOPTS} ${USER_MAKEOPTS} menuselect.makeopts && echo "menuselect changes saved!" || echo "menuselect changes NOT saved!"
-build_tools/menuselect: build_tools/menuselect.c build_tools/menuselect_curses.c build_tools/menuselect.h mxml/libmxml.a include/autoconfig.h
+build_tools/menuselect: build_tools/menuselect.c build_tools/menuselect_curses.c build_tools/menuselect.h include/autoconfig.h strcompat.o mxml/libmxml.a
$(MAKE) -C build_tools menuselect
mxml/libmxml.a:
diff --git a/build_tools/Makefile b/build_tools/Makefile
index 77190315a..7f4d8b4ec 100644
--- a/build_tools/Makefile
+++ b/build_tools/Makefile
@@ -1,4 +1,4 @@
-MENUSELECT_OBJS=menuselect.o menuselect_curses.o
+MENUSELECT_OBJS=menuselect.o menuselect_curses.o ../strcompat.o
MENUSELECT_CFLAGS=-g -c -D_GNU_SOURCE -I../ -I../include/
MENUSELECT_LIBS=../mxml/libmxml.a $(CURSES_LIB)