summaryrefslogtreecommitdiff
path: root/infrastructure
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2008-10-08 20:24:55 +0000
committerChris Wilson <chris+github@qwirx.com>2008-10-08 20:24:55 +0000
commitd6195c39091bfe7d0e7ff3b1531b401284c22c8f (patch)
tree1dddf20e27c8996b9c6c70386ea67ddf4ed34d3a /infrastructure
parent7afb2cbc1263cb25bec103ad7644b9f25aa5b01b (diff)
Compile fix for makeparcels.pl (missing definition of @args).
Diffstat (limited to 'infrastructure')
-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;