From: Richard Levitte Date: Sun, 14 Feb 2016 07:47:47 +0000 (+0100) Subject: Have dofile.pl say where it was run, for real this time X-Git-Tag: OpenSSL_1_1_0-pre3~20 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ba327ade803fccb34a4bd4f5803efb33e22dd767;p=openssl Have dofile.pl say where it was run, for real this time Reviewed-by: Viktor Dukhovni --- diff --git a/Configurations/descrip.mms.tmpl b/Configurations/descrip.mms.tmpl index 1091952624..74fec4c003 100644 --- a/Configurations/descrip.mms.tmpl +++ b/Configurations/descrip.mms.tmpl @@ -630,7 +630,7 @@ EOF return <<"EOF"; $script : $sources \$(PERL) "-I\$(BUILDDIR)" "-Mconfigdata" $dofile - - "-o{- $config{build_file} -}" $sources > $script + "-o$target{build_file}" $sources > $script SET FILE/PROT=(S:RWED,O:RWED,G:RE,W:RE) $script PURGE $script EOF diff --git a/Configurations/unix-Makefile.tmpl b/Configurations/unix-Makefile.tmpl index 5b34df5a03..f816b54a7a 100644 --- a/Configurations/unix-Makefile.tmpl +++ b/Configurations/unix-Makefile.tmpl @@ -883,7 +883,7 @@ EOF return <<"EOF"; $script : $sources \$(PERL) "-I\$(BLDDIR)" -Mconfigdata "$dofile" \\ - "-o{- $config{build_file} -}" $sources > "$script" + "-o$target{build_file}" $sources > "$script" chmod a+x $script EOF }