Author: adsb Date: 2009-04-15 21:06:21 +0000 (Wed, 15 Apr 2009) New Revision: 1857
Modified: trunk/debian/changelog trunk/scripts/debchange.pl Log: debchange: Use == for numeric comparison, not eq. Modified: trunk/debian/changelog =================================================================== --- trunk/debian/changelog 2009-04-12 15:12:07 UTC (rev 1856) +++ trunk/debian/changelog 2009-04-15 21:06:21 UTC (rev 1857) @@ -1,3 +1,9 @@ +devscripts (2.10.49) UNRELEASED; urgency=low + + * debchange: Use == for numeric comparison, not eq. + + -- Adam D. Barratt <[email protected]> Sun, 12 Apr 2009 16:20:10 +0100 + devscripts (2.10.48) unstable; urgency=low [ Adam D. Barratt ] Modified: trunk/scripts/debchange.pl =================================================================== --- trunk/scripts/debchange.pl 2009-04-12 15:12:07 UTC (rev 1856) +++ trunk/scripts/debchange.pl 2009-04-15 21:06:21 UTC (rev 1857) @@ -1396,7 +1396,7 @@ # And check whether a new orig tarball exists my @origs = glob("../$PACKAGE\_$new_uversion.*"); my $num_origs = grep { /^..\/\Q$PACKAGE\E_\Q$new_uversion\E\.orig\.tar\.(gz|bz2|lzma)$/ } @origs; - if ($num_origs eq 0) { + if ($num_origs == 0) { warn "$progname warning: no orig tarball found for the new version.\n"; } } -- To unsubscribe, send mail to [email protected].
