summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xinfrastructure/makeparcels.pl.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/infrastructure/makeparcels.pl.in b/infrastructure/makeparcels.pl.in
index ff96c078..188832b4 100755
--- a/infrastructure/makeparcels.pl.in
+++ b/infrastructure/makeparcels.pl.in
@@ -195,7 +195,9 @@ EOF
for(@{$parcel_contents{$parcel}})
{
- my ($type,$name,$dest) = split /\s+/;
+ my @args = split /\s+/;
+
+ my ($type,$name,$dest) = @args;
my $optional = 0;
my $install = 1;