summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-07-09 12:00:34 +0000
committerBodo Möller <bodo@openssl.org>1999-07-09 12:00:34 +0000
commitfbabb75207d17e92cedb5fd0b6d6c3816c3bb167 (patch)
tree53048806f3444b5c60517326cc5a1d1f766e81ef /Configure
parent1489ccf695896892cf03033008df8932723847db (diff)
Don't confuse mk1mf.pl by combining multiple options into one.
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure8
1 files changed, 7 insertions, 1 deletions
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") {