From: Dr. Stephen Henson Date: Wed, 28 Oct 2009 13:55:44 +0000 (+0000) Subject: PR: 2080 X-Git-Tag: OpenSSL-fips-2_0-rc1~1471 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=dafd83334a10ea2ff5cc7182f04cf0f509883d91 PR: 2080 Submitted by: Mike Frysinger Approved by: steve@openssl.org Respect MAKE environment variable if set. --- diff --git a/Configure b/Configure index c861897518..261c54c7a2 100755 --- a/Configure +++ b/Configure @@ -1046,6 +1046,7 @@ $libdir="lib" if $libdir eq ""; $default_ranlib= &which("ranlib") or $default_ranlib="true"; $perl=$ENV{'PERL'} or $perl=&which("perl5") or $perl=&which("perl") or $perl="perl"; +my $make = $ENV{'MAKE'} || "make"; $cross_compile_prefix=$ENV{'CROSS_COMPILE'} if $cross_compile_prefix eq ""; @@ -1782,7 +1783,7 @@ if($IsMK1MF) { EOF close(OUT); } else { - my $make_command = "make PERL=\'$perl\'"; + my $make_command = "$make PERL=\'$perl\'"; my $make_targets = ""; $make_targets .= " links" if $symlink; $make_targets .= " depend" if $depflags ne $default_depflags && $make_depend;