From d0868120d3c10f341fa4d5c877674589b1391d4d Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 4 Aug 2005 01:30:21 +0000 Subject: r9025: fix the build when it was stoped and you don't run make clean before make all metze (This used to be commit 9a920d18bdfc8fe464989fc604e9e5374ee39329) --- source4/heimdal_build/asn1_deps.pl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'source4') diff --git a/source4/heimdal_build/asn1_deps.pl b/source4/heimdal_build/asn1_deps.pl index 4cff3e2fae..f102a6c663 100755 --- a/source4/heimdal_build/asn1_deps.pl +++ b/source4/heimdal_build/asn1_deps.pl @@ -24,8 +24,9 @@ foreach() { 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); -- cgit