diff options
author | Stefan Metzmacher <metze@samba.org> | 2005-08-04 01:30:21 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:31:08 -0500 |
commit | d0868120d3c10f341fa4d5c877674589b1391d4d (patch) | |
tree | ddfa44fb0c1f5fe0673e0a21163b7d43b3c5ed06 /source4 | |
parent | aa7d44c0d998e642d7b5b001834797d38faebfde (diff) | |
download | samba-d0868120d3c10f341fa4d5c877674589b1391d4d.tar.gz samba-d0868120d3c10f341fa4d5c877674589b1391d4d.tar.bz2 samba-d0868120d3c10f341fa4d5c877674589b1391d4d.zip |
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)
Diffstat (limited to 'source4')
-rwxr-xr-x | source4/heimdal_build/asn1_deps.pl | 5 |
1 files changed, 3 insertions, 2 deletions
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(<IN>) { 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); |