From: Dr. Stephen Henson Date: Wed, 7 Oct 2009 16:41:14 +0000 (+0000) Subject: Allow cross compilation prefix to come from CROSS_COMPILE environment variable X-Git-Tag: OpenSSL-fips-2_0-rc1~1502 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=f99f41cf5cdca30e8c1559194e96017669f03861 Allow cross compilation prefix to come from CROSS_COMPILE environment variable --- diff --git a/Configure b/Configure index 5cac797276..8d488695c4 100755 --- a/Configure +++ b/Configure @@ -1047,6 +1047,8 @@ $default_ranlib= &which("ranlib") or $default_ranlib="true"; $perl=$ENV{'PERL'} or $perl=&which("perl5") or $perl=&which("perl") or $perl="perl"; +$cross_compile_prefix=$ENV{'CROSS_COMPILE'}; + chop $openssldir if $openssldir =~ /\/$/; chop $prefix if $prefix =~ /.\/$/;