summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2013-04-03 22:38:18 +0100
committerDr. Stephen Henson <steve@openssl.org>2013-04-03 22:38:18 +0100
commit3fce3f6b2b834cf059b1fad12ee2b5c875e73113 (patch)
tree6b4aaf0a3816e6e4ddaaafd2148790aa99d3779d /util
parent0ded2a06891a4d5a207d8f29aa9a89a755158170 (diff)
Use $(PERL) when calling scripts in mk1mf.pl
Diffstat (limited to 'util')
-rwxr-xr-xutil/mk1mf.pl2
1 files changed, 1 insertions, 1 deletions
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);
}