From ddb870f36ba6d7c982239ecd663f70853e10a85b Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Mon, 5 May 2003 04:09:56 +0000 Subject: 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) --- source3/Makefile.in | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'source3') 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 $@" -- cgit