diff options
author | Tim Potter <tpot@samba.org> | 2003-05-05 04:09:56 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-05-05 04:09:56 +0000 |
commit | ddb870f36ba6d7c982239ecd663f70853e10a85b (patch) | |
tree | 787a29c397b7181a8bef37f29b7c19de02fedc3d /source3/Makefile.in | |
parent | c724747e2d282cc63cbaca355c2e169ef393904e (diff) | |
download | samba-ddb870f36ba6d7c982239ecd663f70853e10a85b.tar.gz samba-ddb870f36ba6d7c982239ecd663f70853e10a85b.tar.bz2 samba-ddb870f36ba6d7c982239ecd663f70853e10a85b.zip |
A good reason to use make variables instead of autoconf substitutions
directly - fixed problem where the last line of the link command was
'\ @LDAP_LIBS@'. If @LDAP_LIBS@ is zero then the backslash
incorrectly includes the next line of the Makefile in the current
target.
This should fix a bucketload of build farm failures.
(This used to be commit 895bef1a62f60f4e91dc6b1c244820b024c36a5c)
Diffstat (limited to 'source3/Makefile.in')
-rw-r--r-- | source3/Makefile.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 985bdad08f..7f9c2a8b93 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -976,8 +976,7 @@ nsswitch/libnss_wins.@SHLIBEXT@: $(NSS_OBJ) bin/winbindd@EXEEXT@: $(WINBINDD_OBJ) @BUILD_POPT@ bin/.dummy @echo Linking $@ - @$(LINK) -o $@ $(WINBINDD_OBJ) $(DYNEXP) $(LIBS) @POPTLIBS@ $(ADSLIBS) \ - @LDAP_LIBS@ + @$(LINK) -o $@ $(WINBINDD_OBJ) $(DYNEXP) $(LIBS) @POPTLIBS@ $(ADSLIBS) @LDAP_LIBS@ nsswitch/@WINBIND_NSS@: $(WINBIND_NSS_PICOBJS) @echo "Linking $@" |