svn commit: samba r15322 - in branches/SAMBA_4_0/source/build/smb_build: .

jelmer at samba.org jelmer at samba.org
Sat Apr 29 12:55:19 GMT 2006


Author: jelmer
Date: 2006-04-29 12:55:19 +0000 (Sat, 29 Apr 2006)
New Revision: 15322

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=15322

Log:
Don't depend on nonexisting targets - should fix the build

Modified:
   branches/SAMBA_4_0/source/build/smb_build/output.pm


Changeset:
Modified: branches/SAMBA_4_0/source/build/smb_build/output.pm
===================================================================
--- branches/SAMBA_4_0/source/build/smb_build/output.pm	2006-04-29 12:39:19 UTC (rev 15321)
+++ branches/SAMBA_4_0/source/build/smb_build/output.pm	2006-04-29 12:55:19 UTC (rev 15322)
@@ -85,12 +85,12 @@
 	$lib->{LIBRARY_NAME} = "lib".lc($link_name).".a";
 	push(@{$lib->{LINK_FLAGS}}, "\$($lib->{TYPE}_$lib->{NAME}\_OBJ_LIST)");
 
-	$lib->{TARGET} = "bin/$lib->{LIBRARY_NAME}";
 	if (defined($lib->{OBJ_FILES})) {
-		$lib->{OUTPUT} = $lib->{TARGET};
+		$lib->{TARGET} = "bin/$lib->{LIBRARY_NAME}";
 	} else {
-		$lib->{OUTPUT} = "";
+		$lib->{TARGET} = "";
 	}
+	$lib->{OUTPUT} = $lib->{TARGET};
 }
 
 sub generate_binary($)



More information about the samba-cvs mailing list