diff options
author | Stefan Metzmacher <metze@samba.org> | 2009-09-14 09:58:19 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2009-09-14 10:01:46 +0200 |
commit | d1457b6648643eb177d29f4307b9ca88230fb72f (patch) | |
tree | af9b439be75afed13442ea8d389f04e0945633d1 /source4 | |
parent | e29cbda452096ff6b8ce415aa4f0e4c4da675019 (diff) | |
download | samba-d1457b6648643eb177d29f4307b9ca88230fb72f.tar.gz samba-d1457b6648643eb177d29f4307b9ca88230fb72f.tar.bz2 samba-d1457b6648643eb177d29f4307b9ca88230fb72f.zip |
s4:heimdal_build: fix the build with --enable-automatic-dependencies
We need to create the header file before we generate the source file.
metze
Diffstat (limited to 'source4')
-rwxr-xr-x | source4/heimdal_build/asn1_deps.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/heimdal_build/asn1_deps.pl b/source4/heimdal_build/asn1_deps.pl index 3b187558d1..504f66d535 100755 --- a/source4/heimdal_build/asn1_deps.pl +++ b/source4/heimdal_build/asn1_deps.pl @@ -35,7 +35,7 @@ print "\t\@\$(heimdalbuildsrcdir)/asn1_compile_wrapper.sh \$(builddir) $dirname print "$headerx: $output_file\n"; print "$header: $headerx\n"; print "\t\@cp $headerx $header\n"; -print "$x_file: $output_file\n"; +print "$x_file: $header\n"; print "$c_file: $x_file\n"; print "\t\@echo \"#include \\\"config.h\\\"\" > $c_file && cat $x_file >> $c_file\n\n"; |