[Box Backup-commit] COMMIT r2341 - box/trunk/infrastructure
boxbackup-dev@boxbackup.org
boxbackup-dev@boxbackup.org
Wed, 8 Oct 2008 21:24:56 +0100 (BST)
Author: chris
Date: 2008-10-08 21:24:55 +0100 (Wed, 08 Oct 2008)
New Revision: 2341
Modified:
box/trunk/infrastructure/makeparcels.pl.in
Log:
Compile fix for makeparcels.pl (missing definition of @args).
Modified: box/trunk/infrastructure/makeparcels.pl.in
===================================================================
--- box/trunk/infrastructure/makeparcels.pl.in 2008-10-08 19:59:43 UTC (rev 2340)
+++ box/trunk/infrastructure/makeparcels.pl.in 2008-10-08 20:24:55 UTC (rev 2341)
@@ -195,8 +195,10 @@
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;