From e57593ca44c5357dec900dcdb2d9167807944fa5 Mon Sep 17 00:00:00 2001 From: John McQuah Date: Fri, 22 Mar 2024 00:01:26 +0000 Subject: [PATCH] prt-auf: treat the remove command as a string, not a list --- scripts/prt-auf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/prt-auf b/scripts/prt-auf index 1362624..bd934cb 100755 --- a/scripts/prt-auf +++ b/scripts/prt-auf @@ -544,7 +544,7 @@ sub uninstall { $opkg{rargs} .= " -r $altroot"; } foreach my $t (@targets) { - ($opkg{test} eq "no") ? system($PKGRM,$opkg{rargs},$t) : print "$PKGRM $opkg{rargs} $t\n"; + ($opkg{test} eq "no") ? system("$PKGRM $opkg{rargs} $t") : print "$PKGRM $opkg{rargs} $t\n"; next if ($?>>8 != 0); push @removed, $t; if (($LOCKED{$t}) and ($opkg{test} eq "no")) { port_unlock($t); }