Author: adam-guest
Date: 2008-02-27 18:18:09 +0000 (Wed, 27 Feb 2008)
New Revision: 1069
Modified:
trunk/scripts/debuild.pl
Log:
Fix undef variable warning
Modified: trunk/scripts/debuild.pl
===================================================================
--- trunk/scripts/debuild.pl 2008-02-27 14:51:56 UTC (rev 1068)
+++ trunk/scripts/debuild.pl 2008-02-27 18:18:09 UTC (rev 1069)
@@ -319,7 +319,8 @@
push @preserve_vars, @vars;
delete $preserve_vars[$index];
}
- }
+ }
+ @preserve_vars = map {$_ if defined $_} @preserve_vars;
@[EMAIL PROTECTED] = (1) x scalar @preserve_vars;
}
$run_lintian = $config_vars{'DEBUILD_LINTIAN'} eq 'no' ? 0 : 1;
--
To unsubscribe, send mail to [EMAIL PROTECTED]