Explorar el Código

Remove -Z from patch call, as it makes patch warn about missing timestamps.

Adam Heath hace 24 años
padre
commit
452266f51d
Se han modificado 3 ficheros con 8 adiciones y 1 borrados
  1. 5 0
      ChangeLog
  2. 2 0
      debian/changelog
  3. 1 1
      scripts/dpkg-source.pl

+ 5 - 0
ChangeLog

@@ -1,3 +1,8 @@
+Thu Jul  4 19:33:20 CDT 2002 Adam Heath <doogie@debian.org>
+
+  * scripts/dpkg-source.pl: Remove -Z from patch call, as it makes patch
+    warn about missing timestamps.
+
 Tue Jul  2 12:11:59 CDT 2002 Adam Heath <doogie@debian.org>
 
   * debian/changelog, debian/control: dpkg + dpkg-static conflict dpkg-dev

+ 2 - 0
debian/changelog

@@ -3,6 +3,8 @@ dpkg (1.10.2) unstable; urgency=low
   * Make configuration files in $HOME work again
   * dpkg + dpkg-static conflict with dpkg-dev << 1.9, to fix md5sum error
     in dpkg-source.  Closes: #151691.
+  * Remove -Z from patch call, in dpkg-source, as it makes patch warn about
+    missing timestamps.  Closes: #151965
 
  -- Wichert Akkerman <wakkerma@debian.org>  UNRELEASED
 

+ 1 - 1
scripts/dpkg-source.pl

@@ -691,7 +691,7 @@ if ($opmode eq 'build') {
 	    $ENV{'LC_ALL'}= 'C';
 	    $ENV{'LANG'}= 'C';
             exec('patch','-s','-t','-F','0','-N','-p1','-u',
-                 '-V','never','-g0','-b','-Z','-z','.dpkg-orig');
+                 '-V','never','-g0','-b','-z','.dpkg-orig');
             &syserr("exec patch");
         }
         close(GZIP);