diff options
Diffstat (limited to 'sboupgrade')
-rwxr-xr-x | sboupgrade | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -88,6 +88,7 @@ if ($jobs) { if ($compat32) { die "compat32 only works on x86_64.\n" unless get_arch eq 'x86_64'; + die "-p|--compat32 requires -N|--installnew\n" unless $install_new; } # if we can't find SLACKBUILDS.TXT in $config{HOME}, prompt to fetch the tree @@ -114,12 +115,6 @@ for my $sbo (@$build_queue) { defined $locations{$sbo}; } -sub get_readme_path($) { - exists $_[0] or script_error 'get_readme_path requires an argument.'; - my $sbo = shift; - return $locations{$sbo} .'/README'; -} - # look for any (user|group)add commands in the README sub get_user_group($) { exists $_[0] or script_error 'get_user_group requires an argument'; |