In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/23695c073f41fdac9d20d873827ba8b2a3dda710?hp=f38527b25758b04ca4332232437b236683917182>

- Log -----------------------------------------------------------------
commit 23695c073f41fdac9d20d873827ba8b2a3dda710
Author: Niko Tyni <[email protected]>
Date:   Sun Jan 10 22:35:53 2016 +0200

    Fix the Configure escape with usecrosscompile but no targethost
    
    Commit 97076f2 added a graceful exit to Configure when targethost is
    not defined but usecrosscompile is. However, this is not reached because
    there is a similar check a bit earlier that makes Configure bail out.
    
    Make the earlier check warn instead of croaking.
    
    The use case for this combination is supplying an external config.sh
    suitable for the target platform, avoiding the need for configuration
    probes.
-----------------------------------------------------------------------

Summary of changes:
 Configure | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Configure b/Configure
index 5a353d6..33a6cac 100755
--- a/Configure
+++ b/Configure
@@ -2973,7 +2973,7 @@ $define|true|[yY]*)
        *)  echo "Using targetarch $targetarch." >&4 ;;
        esac
        case "$targethost" in
-       '') echo "Targethost not defined." >&4; croak=y ;;
+       '') echo "Targethost not defined." >&4; croak=n ;;
        *)  echo "Using targethost $targethost." >&4
        esac
        locincpth=' '

--
Perl5 Master Repository

Reply via email to