diff options
author | Neil Williams <codehelp@debian.org> | 2013-01-12 13:23:00 +0000 |
---|---|---|
committer | Brian Fraser <fraserbn@gmail.com> | 2014-01-22 13:08:19 -0300 |
commit | dbb1f24ed205589c91f22ec2260f1abaef2901dc (patch) | |
tree | 1edb91d88fccc5c58b4a8316c67726411dba2673 /Configure | |
parent | 97076f2d65c868728b9943392be44a3d4c8e881d (diff) | |
download | perl-dbb1f24ed205589c91f22ec2260f1abaef2901dc.tar.gz |
fix the ability to use targethost when defined.
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -2881,7 +2881,7 @@ esac case "$targethost" in '') echo "Checking for cross-compile" >&4 case "$usecrosscompile$multiarch" in - *$define*) echo "Skipping the rest of Configure as no targethost was defined when cross-compiling" >&4 + *$define*) echo "Skipping the try tests in the rest of Configure as no targethost was defined when cross-compiling" >&4 if [ -f Makefile ]; then echo " " echo "Now you must ensure config.sh, config.h and the generated headers exist and run a $make." @@ -2890,13 +2890,13 @@ case "$targethost" in fi exit 0 ;; - esac - ;; *) echo "No targethost for running compiler tests against defined, running locally" >&4 run='' to=: from=: ;; + esac + ;; *) echo "Using targethost $targethost." >&4 case "$src" in /*) run=$src/Cross/run |