From: Bodo Möller Date: Fri, 9 Jul 1999 12:00:34 +0000 (+0000) Subject: Don't confuse mk1mf.pl by combining multiple options into one. X-Git-Tag: OpenSSL_0_9_4~123 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fbabb75207d17e92cedb5fd0b6d6c3816c3bb167;p=openssl Don't confuse mk1mf.pl by combining multiple options into one. --- diff --git a/Configure b/Configure index e4571dce83..8f5285c218 100755 --- a/Configure +++ b/Configure @@ -390,7 +390,13 @@ foreach (@ARGV) die "target already defined - $target\n" if ($target ne ""); $target=$_; } - $options .= $_ unless $_ eq $target; + unless ($_ eq $target) { + if ($options eq "") { + $options = $_; + } else { + $options .= " ".$_; + } + } } if ($target eq "TABLE") {