aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Pipkin <j@dawnrazor.net>2012-09-22 03:22:46 -0500
committerJacob Pipkin <j@dawnrazor.net>2012-09-22 03:22:46 -0500
commit1354c09e1b93567ef309ffe0f966cd0de00cf95f (patch)
treea6878b92aa47d4b44545d87ba5b46919f9aba91b
parent3b691ad54986277326cbd133f19a75bc21694c72 (diff)
downloadsbotools2-1354c09e1b93567ef309ffe0f966cd0de00cf95f.tar.xz
fix bug where installing a compat32 where its 64-bit version is already installed results in the 64-bit version building and installing twice
-rwxr-xr-xsboupgrade2
1 files changed, 1 insertions, 1 deletions
diff --git a/sboupgrade b/sboupgrade
index fa0c570..544ae92 100755
--- a/sboupgrade
+++ b/sboupgrade
@@ -389,7 +389,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';