From dbb1f24ed205589c91f22ec2260f1abaef2901dc Mon Sep 17 00:00:00 2001 From: Neil Williams Date: Sat, 12 Jan 2013 13:23:00 +0000 Subject: [PATCH] fix the ability to use targethost when defined. --- Configure | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Configure b/Configure index 73d6e21..1213a53 100755 --- a/Configure +++ b/Configure @@ -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 -- 2.7.4