From: Stefan Metzmacher Date: Mon, 14 Sep 2009 07:58:19 +0000 (+0200) Subject: s4:heimdal_build: fix the build with --enable-automatic-dependencies X-Git-Tag: talloc-2.0.1~519^2~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d1457b6648643eb177d29f4307b9ca88230fb72f;p=thirdparty%2Fsamba.git s4:heimdal_build: fix the build with --enable-automatic-dependencies We need to create the header file before we generate the source file. metze --- diff --git a/source4/heimdal_build/asn1_deps.pl b/source4/heimdal_build/asn1_deps.pl index 3b187558d1c..504f66d535a 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";