The following commit has been merged in the master branch:
commit 2ab51aab6771462c1e1b0e1c387badcedbe81533
Author: Raphael Hertzog <[EMAIL PROTECTED]>
Date: Tue Dec 9 08:53:00 2008 +0100
Fix some “use Dpkg::ErrorHandling qw(…)” calls
* scripts/Dpkg/Changelog.pm, scripts/dpkg-buildpackage.pl,
scripts/dpkg-genchanges.pl, scripts/dpkg-gencontrol.pl,
scripts/dpkg-source.pl: Also import the default exported functions
of Dpkg::ErrorHandling and not only the unusual ones.
diff --git a/ChangeLog b/ChangeLog
index 5c52a8e..c035c59 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2008-12-08 Raphael Hertzog <[EMAIL PROTECTED]>
+
+ * scripts/Dpkg/Changelog.pm, scripts/dpkg-buildpackage.pl,
+ scripts/dpkg-genchanges.pl, scripts/dpkg-gencontrol.pl,
+ scripts/dpkg-source.pl: Also import the default exported functions
+ of Dpkg::ErrorHandling and not only the unusual ones.
+
2008-12-08 Guillem Jover <[EMAIL PROTECTED]>
* dpkg-deb/build.c (do_build): Mark strings for translation.
diff --git a/scripts/Dpkg/Changelog.pm b/scripts/Dpkg/Changelog.pm
index 8798f89..5a91632 100644
--- a/scripts/Dpkg/Changelog.pm
+++ b/scripts/Dpkg/Changelog.pm
@@ -39,7 +39,7 @@ use English;
use Dpkg;
use Dpkg::Gettext;
-use Dpkg::ErrorHandling qw(report);
+use Dpkg::ErrorHandling qw(:DEFAULT report);
use Dpkg::Cdata;
use Dpkg::Fields;
diff --git a/scripts/dpkg-buildpackage.pl b/scripts/dpkg-buildpackage.pl
index 9184d72..f0eea3e 100755
--- a/scripts/dpkg-buildpackage.pl
+++ b/scripts/dpkg-buildpackage.pl
@@ -8,7 +8,7 @@ use File::Basename;
use Dpkg;
use Dpkg::Gettext;
-use Dpkg::ErrorHandling qw($warnable_error);
+use Dpkg::ErrorHandling qw(:DEFAULT $warnable_error);
use Dpkg::BuildOptions;
use Dpkg::Compression;
use Dpkg::Version qw(check_version);
diff --git a/scripts/dpkg-genchanges.pl b/scripts/dpkg-genchanges.pl
index 432f918..885cd51 100755
--- a/scripts/dpkg-genchanges.pl
+++ b/scripts/dpkg-genchanges.pl
@@ -9,7 +9,7 @@ use English;
use Dpkg;
use Dpkg::Gettext;
use Dpkg::Checksums;
-use Dpkg::ErrorHandling qw(unknown);
+use Dpkg::ErrorHandling qw(:DEFAULT unknown);
use Dpkg::Arch qw(get_host_arch debarch_eq debarch_is);
use Dpkg::Fields qw(:list capit);
use Dpkg::Compression;
diff --git a/scripts/dpkg-gencontrol.pl b/scripts/dpkg-gencontrol.pl
index ed96413..85cd1c1 100755
--- a/scripts/dpkg-gencontrol.pl
+++ b/scripts/dpkg-gencontrol.pl
@@ -7,7 +7,7 @@ use POSIX;
use POSIX qw(:errno_h);
use Dpkg;
use Dpkg::Gettext;
-use Dpkg::ErrorHandling qw(unknown);
+use Dpkg::ErrorHandling qw(:DEFAULT unknown);
use Dpkg::Arch qw(get_host_arch debarch_eq debarch_is);
use Dpkg::Deps qw(@pkg_dep_fields %dep_field_type);
use Dpkg::Fields qw(:list capit);
diff --git a/scripts/dpkg-source.pl b/scripts/dpkg-source.pl
index 57f3110..8775ea1 100755
--- a/scripts/dpkg-source.pl
+++ b/scripts/dpkg-source.pl
@@ -6,7 +6,7 @@ use warnings;
use Dpkg;
use Dpkg::Gettext;
-use Dpkg::ErrorHandling qw(unknown $quiet_warnings);
+use Dpkg::ErrorHandling qw(:DEFAULT unknown $quiet_warnings);
use Dpkg::Arch qw(debarch_eq);
use Dpkg::Deps qw(@src_dep_fields %dep_field_type);
use Dpkg::Fields qw(:list capit);
--
dpkg's main repository
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]