mirror of
https://github.com/QuasarApp/openssl.git
synced 2025-05-03 13:09:38 +00:00
Don't confuse mk1mf.pl by combining multiple options into one.
This commit is contained in:
parent
1489ccf695
commit
fbabb75207
@ -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") {
|
||||
|
Loading…
x
Reference in New Issue
Block a user