summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim McDonough <jmcd@samba.org>2002-03-07 19:55:35 +0000
committerJim McDonough <jmcd@samba.org>2002-03-07 19:55:35 +0000
commitf920d9e3c5d284fade738fb02d9abc467c5c0989 (patch)
tree6ea92b9e5bd01db1fe8ec6fda68c754f93974064
parentcb6c9ef4750a52ee08baded91df5fd48c19d4872 (diff)
downloadsamba-f920d9e3c5d284fade738fb02d9abc467c5c0989.tar.gz
samba-f920d9e3c5d284fade738fb02d9abc467c5c0989.tar.bz2
samba-f920d9e3c5d284fade738fb02d9abc467c5c0989.zip
Update Makefile.in for rpcclient build on machines without libpopt or requested build of included popt.
(This used to be commit 4b4430f1c56a5c9a0d53dd8b624022644d8061e1)
-rw-r--r--source3/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in
index 90975424c3..01f33de1ea 100644
--- a/source3/Makefile.in
+++ b/source3/Makefile.in
@@ -574,9 +574,9 @@ bin/swat: $(SWAT_OBJ) bin/.dummy
@echo Linking $@
@$(CC) $(FLAGS) -o $@ $(SWAT_OBJ) $(LDFLAGS) $(DYNEXP) $(LIBS)
-bin/rpcclient: $(RPCCLIENT_OBJ) bin/.dummy
+bin/rpcclient: $(RPCCLIENT_OBJ) @BUILD_POPT@ bin/.dummy
@echo Linking $@
- @$(CC) $(FLAGS) -o $@ $(RPCCLIENT_OBJ) $(LDFLAGS) $(DYNEXP) $(TERMLDFLAGS) $(TERMLIBS) $(LIBS)
+ @$(CC) $(FLAGS) -o $@ $(RPCCLIENT_OBJ) $(LDFLAGS) $(DYNEXP) $(TERMLDFLAGS) $(TERMLIBS) $(LIBS) @BUILD_POPT@
bin/samsync: $(SAMSYNC_OBJ) bin/.dummy
@echo Linking $@