From: Dr. Stephen Henson Date: Wed, 3 Apr 2013 21:38:18 +0000 (+0100) Subject: Use $(PERL) when calling scripts in mk1mf.pl X-Git-Tag: master-post-reformat~1360 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=3fce3f6b2b834cf059b1fad12ee2b5c875e73113;p=oweals%2Fopenssl.git Use $(PERL) when calling scripts in mk1mf.pl --- diff --git a/util/mk1mf.pl b/util/mk1mf.pl index ed65a057f0..087671b6c3 100755 --- a/util/mk1mf.pl +++ b/util/mk1mf.pl @@ -1355,7 +1355,7 @@ sub do_copy_rule if ($n =~ /bss_file/) { $pp=".c"; } else { $pp=$p; } - $ret.="$to${o}$n$pp: \$(SRC_D)$o$_$pp $to\n\t\$(SRC_D)${o}util${o}copy-if-different.pl \"\$(SRC_D)$o$_$pp\" \"$to${o}$n$pp\"\n\n"; + $ret.="$to${o}$n$pp: \$(SRC_D)$o$_$pp $to\n\t\$(PERL) \$(SRC_D)${o}util${o}copy-if-different.pl \"\$(SRC_D)$o$_$pp\" \"$to${o}$n$pp\"\n\n"; } return($ret); }