From d1457b6648643eb177d29f4307b9ca88230fb72f Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 14 Sep 2009 09:58:19 +0200 Subject: [PATCH] s4:heimdal_build: fix the build with --enable-automatic-dependencies We need to create the header file before we generate the source file. metze --- source4/heimdal_build/asn1_deps.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; -- 2.11.4.GIT