]> err.no Git - dpkg/commitdiff
Bugfix in source format 3.0 (quilt)
authorRaphael Hertzog <hertzog@debian.org>
Thu, 22 May 2008 20:46:20 +0000 (22:46 +0200)
committerRaphael Hertzog <hertzog@debian.org>
Thu, 22 May 2008 20:46:20 +0000 (22:46 +0200)
* scripts/Dpkg/Source/Package/V3/quilt.pm: Add missing "use
File::Path" for mkpath().

ChangeLog
debian/changelog
scripts/Dpkg/Source/Package/V3/quilt.pm

index 60ff1312fbdf2d8c5d8b3f652a9577b6bd895b9f..b55ab1eaa879360b2b890e7d10781b9e57b03652 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-05-22  Raphael Hertzog  <hertzog@debian.org>
+
+       * scripts/Dpkg/Source/Package/V3/quilt.pm: Add missing "use
+       File::Path" for mkpath().
+
 2008-05-13  Guillem Jover  <guillem@debian.org>
 
        * src/main.c (setforce): Add help output for '--force-breaks'.
index 07be7224d1d5b3ecd574bd8efe19a45fbe7128e2..e2e3d170ea82d3f79a2dcab133ad3c970309c803 100644 (file)
@@ -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).
index ef270231af8ee6951a8d5c216bec5f9a545e8b9d..eb62ef2852a979ca28e4cee2448469bda1a1af82 100644 (file)
@@ -31,6 +31,7 @@ use Dpkg::IPC;
 use POSIX;
 use File::Basename;
 use File::Spec;
+use File::Path;
 
 our $CURRENT_MINOR_VERSION = "0";