From: Raphael Hertzog Date: Thu, 22 May 2008 20:46:20 +0000 (+0200) Subject: Bugfix in source format 3.0 (quilt) X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9542818924467be2f09eabccd6bd454f5e4d14a1;p=dpkg Bugfix in source format 3.0 (quilt) * scripts/Dpkg/Source/Package/V3/quilt.pm: Add missing "use File::Path" for mkpath(). --- diff --git a/ChangeLog b/ChangeLog index 60ff1312..b55ab1ea 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-05-22 Raphael Hertzog + + * scripts/Dpkg/Source/Package/V3/quilt.pm: Add missing "use + File::Path" for mkpath(). + 2008-05-13 Guillem Jover * src/main.c (setforce): Add help output for '--force-breaks'. diff --git a/debian/changelog b/debian/changelog index 07be7224..e2e3d170 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,9 +1,13 @@ dpkg (1.14.20) UNRELEASED; urgency=low + [ Guillem Jover ] * Change UTF-8 '©' to '(C)' in deb-version.5 (unfuzzy translations). * Document --force-breaks in 'dpkg --force-help' output. * Document triggers --debug values in dpkg.1. Thanks to Sven Joachim. + [ Raphael Hertzog ] + * Add missing 'use File::Path' in Dpkg::Source::Package::V3::quilt. + [ Updated dpkg translations ] * German (Sven Joachim). * Swedish (Peter Karlsson). diff --git a/scripts/Dpkg/Source/Package/V3/quilt.pm b/scripts/Dpkg/Source/Package/V3/quilt.pm index ef270231..eb62ef28 100644 --- a/scripts/Dpkg/Source/Package/V3/quilt.pm +++ b/scripts/Dpkg/Source/Package/V3/quilt.pm @@ -31,6 +31,7 @@ use Dpkg::IPC; use POSIX; use File::Basename; use File::Spec; +use File::Path; our $CURRENT_MINOR_VERSION = "0";