diff options
author | Jacob Pipkin <j@dawnrazor.net> | 2012-09-22 03:23:33 -0500 |
---|---|---|
committer | Jacob Pipkin <j@dawnrazor.net> | 2012-09-22 03:23:33 -0500 |
commit | 03ca1e1f862390ac3797c12409607f7e55400fd3 (patch) | |
tree | c4f08bc4703603fbf9200478509ee314d16f2b66 | |
parent | 3c35a12786f1673fea250d2019690f663710f778 (diff) | |
download | sbotools2-03ca1e1f862390ac3797c12409607f7e55400fd3.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
@@ -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'; |