提交 fbabb752 编写于 作者: B Bodo Möller

Don't confuse mk1mf.pl by combining multiple options into one.

上级 1489ccf6
......@@ -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") {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册