svn commit: samba r9025 - in branches/SAMBA_4_0/source/heimdal_build: .

metze at samba.org metze at samba.org
Thu Aug 4 01:30:22 GMT 2005


Author: metze
Date: 2005-08-04 01:30:21 +0000 (Thu, 04 Aug 2005)
New Revision: 9025

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

Log:
fix the build when it was stoped and you don't run make clean before make all

metze
Modified:
   branches/SAMBA_4_0/source/heimdal_build/asn1_deps.pl


Changeset:
Modified: branches/SAMBA_4_0/source/heimdal_build/asn1_deps.pl
===================================================================
--- branches/SAMBA_4_0/source/heimdal_build/asn1_deps.pl	2005-08-04 00:29:35 UTC (rev 9024)
+++ branches/SAMBA_4_0/source/heimdal_build/asn1_deps.pl	2005-08-04 01:30:21 UTC (rev 9025)
@@ -24,8 +24,9 @@
 	if (/^([A-Za-z0-9_-]+)[ \t]*::= /) {
 		my $output = $1;
 		$output =~ s/-/_/g;
-		print "$dirname/asn1_$output.c: $header\n";
-		print "\t\@mv $dirname/asn1_$output.x $dirname/asn1_$output.c\n\n";
+		print "$dirname/asn1_$output.x: $header\n";
+		print "$dirname/asn1_$output.c: $dirname/asn1_$output.x\n";
+		print "\t\@cp $dirname/asn1_$output.x $dirname/asn1_$output.c\n\n";
 	}
 }
 close(IN);



More information about the samba-cvs mailing list