[Pkg-xfce-commits] r3555 - scripts
Evgeni Golov
evgeni at alioth.debian.org
Wed Oct 7 08:52:56 UTC 2009
Author: evgeni
Date: 2009-10-07 08:52:56 +0000 (Wed, 07 Oct 2009)
New Revision: 3555
Modified:
scripts/get-sources.pl
Log:
skip empty lines too, not only comments
Modified: scripts/get-sources.pl
===================================================================
--- scripts/get-sources.pl 2009-10-07 08:50:47 UTC (rev 3554)
+++ scripts/get-sources.pl 2009-10-07 08:52:56 UTC (rev 3555)
@@ -49,8 +49,8 @@
while(<SOURCES>) {
chop;
+ $_ =~ /^(#|$)/ and next;
my ($pkg, $tarball, $version) = split;
- $pkg =~ /^#/ and next;
if (!$fetch_all && !grep($_ eq $pkg, @fetch_packages)) {
next;
More information about the Pkg-xfce-commits
mailing list