commit 03ca1e1f862390ac3797c12409607f7e55400fd3
parent 3c35a12786f1673fea250d2019690f663710f778
Author: Jacob Pipkin <j@dawnrazor.net>
Date: Sat, 22 Sep 2012 03:23:33 -0500
fix bug where installing a compat32 where its 64-bit version is already installed results in the 64-bit version building and installing twice
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sboupgrade b/sboupgrade
@@ -414,7 +414,7 @@ FIRST: for my $sbo (@ARGV) {
print "\nYou are attempting to install $name, however, $sbo is not";
print " yet installed. Shall I install it first? [y] ";
if (<STDIN> =~ /^[Yy\n]/) {
- my @args = ('/usr/sbin/sboupgrade', '-oN', $sbo);
+ my @args = ('/usr/sbin/sboupgrade', '-oN');
# populate args so that they carry over correctly
push @args, $noclean ? '-cTRUE' : '-cFALSE';
push @args, $distclean ? '-dTRUE' : '-dFALSE';