summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorJess Robinson <castaway@desert-island.me.uk>2012-12-29 21:29:50 +0000
committerBrian Fraser <fraserbn@gmail.com>2014-01-22 13:08:19 -0300
commitd708ee4b2cf817d9803f6f18f87d6ce91ca74ff4 (patch)
treea3cf4079273544ab17eca72786623bad7fcce7ab /utils
parentb3f5e06d5ac6935e10a18f3dcb6e437fb2861500 (diff)
downloadperl-d708ee4b2cf817d9803f6f18f87d6ce91ca74ff4.tar.gz
Stop using $run for anything other than testing compiled tests in Configure.
When cross-compiling we want to run miniperl etc on the compile host, not the test target
Diffstat (limited to 'utils')
-rw-r--r--utils/Makefile.PL2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/Makefile.PL b/utils/Makefile.PL
index c5e3694b8a..8e461d41eb 100644
--- a/utils/Makefile.PL
+++ b/utils/Makefile.PL
@@ -26,7 +26,7 @@ my $perl = defined $Config{usedl} ? '../miniperl' : '../perl';
print $fh <<"EOT";
PERL = $perl
REALPERL = ../perl
-RUN = $Config{run} # Used mainly cross-compilation setups.
+RUN = # Used mainly cross-compilation setups.
EOT