commit | fbabb75207d17e92cedb5fd0b6d6c3816c3bb167 | [log] [tgz] |
---|---|---|
author | Bodo Möller <bodo@openssl.org> | Fri Jul 09 12:00:34 1999 +0000 |
committer | Bodo Möller <bodo@openssl.org> | Fri Jul 09 12:00:34 1999 +0000 |
tree | 53048806f3444b5c60517326cc5a1d1f766e81ef | |
parent | 1489ccf695896892cf03033008df8932723847db [diff] [blame] |
Don't confuse mk1mf.pl by combining multiple options into one.
diff --git a/Configure b/Configure index e4571dc..8f5285c 100755 --- a/Configure +++ b/Configure
@@ -390,7 +390,13 @@ 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") {