diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-06-15 23:55:52 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-06-15 23:55:52 +0000 |
commit | ba73192c3cec720656f65ede44f82d9e6027a9aa (patch) | |
tree | 913e5a960ba3749763b6284aa1ed71b06154d74d | |
parent | 249368f937406e1c714fff3d44775c414b32ff21 (diff) | |
download | samba-ba73192c3cec720656f65ede44f82d9e6027a9aa.tar.gz samba-ba73192c3cec720656f65ede44f82d9e6027a9aa.tar.bz2 samba-ba73192c3cec720656f65ede44f82d9e6027a9aa.zip |
When adding popt to an application, you need to ensure it builds on non-popt
platforms :-)
(This used to be commit bda8f12ff551f24a6f2a8e8f7a120b2e0e45a269)
-rw-r--r-- | source3/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index bac1ef881c..b48b7c1e11 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -618,7 +618,7 @@ bin/smbumount: $(UMOUNT_OBJ) bin/.dummy bin/testparm: $(TESTPARM_OBJ) bin/.dummy @echo Linking $@ - @$(CC) $(FLAGS) -o $@ $(TESTPARM_OBJ) $(LDFLAGS) $(LIBS) + @$(CC) $(FLAGS) -o $@ $(TESTPARM_OBJ) $(LDFLAGS) $(LIBS) @BUILD_POPT@ bin/testprns: $(TESTPRNS_OBJ) bin/.dummy @echo Linking $@ |