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

metze at samba.org metze at samba.org
Thu Sep 7 14:24:19 GMT 2006


Author: metze
Date: 2006-09-07 14:24:18 +0000 (Thu, 07 Sep 2006)
New Revision: 18223

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

Log:
the perl array of dependecies is in reversed order
print out the CFLAGS in the correct order

metze
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-09-07 14:00:40 UTC (rev 18222)
+++ branches/SAMBA_4_0/source/build/smb_build/output.pm	2006-09-07 14:24:18 UTC (rev 18223)
@@ -146,7 +146,7 @@
 		merge_array(\$part->{FINAL_CFLAGS}, $part->{CPPFLAGS});
 		merge_array(\$part->{FINAL_CFLAGS}, $part->{CFLAGS});
 
-		foreach (@{$part->{UNIQUE_DEPENDENCIES_ALL}}) {
+		foreach (reverse @{$part->{UNIQUE_DEPENDENCIES_ALL}}) {
 			my $elem = $depend->{$_};
 			next if $elem == $part;
 



More information about the samba-cvs mailing list