diff options
author | Jacob Pipkin <j@dawnrazor.net> | 2012-09-22 03:22:46 -0500 |
---|---|---|
committer | Jacob Pipkin <j@dawnrazor.net> | 2012-09-22 03:22:46 -0500 |
commit | 1354c09e1b93567ef309ffe0f966cd0de00cf95f (patch) | |
tree | a6878b92aa47d4b44545d87ba5b46919f9aba91b | |
parent | 3b691ad54986277326cbd133f19a75bc21694c72 (diff) | |
download | sbotools2-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-x | sboupgrade | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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'; |