]> err.no Git - dpkg/commitdiff
scripts/dpkg-scansoures.pl: don't use \z since that is perl5.005-specific.
authorWichert Akkerman <wakkerma@debian.org>
Tue, 21 Dec 1999 23:21:44 +0000 (23:21 +0000)
committerWichert Akkerman <wakkerma@debian.org>
Tue, 21 Dec 1999 23:21:44 +0000 (23:21 +0000)
debian/rules: fix typo so cleanup-info.8 actually gets installed

ChangeLog
debian/changelog
debian/rules
scripts/dpkg-scansources.pl

index febedacc66708a71880cc39c7b27a11d49f0c905..5aae39804b14e25f922ca2a8af54dbc8fd15d935 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Tue Dec 21 15:59:35 CET 1999 Wichert Akkerman <wakkerma@debian.org>
+
+  * scripts/dpkg-scansoures.pl: don't use \z since that is perl5.005-specific.
+    Patch from Roderick Schertler <roderick@argon.org>
+  * debian/rules: fix typo so cleanup-info.8 actually gets installed
+
 Fri Dec 17 00:41:50 CET 1999 Wichert Akkerman <wakkerma@debian.org>
 
   * Makefile.conf.in: use @libdir@ and @admindir@
index 11911caae9d0e9860e1870e12990d6deb0a1b8b0..e395a8695399a61b33cc847b4dbae94d9362aa76 100644 (file)
@@ -1,3 +1,9 @@
+dpkg (1.6.5) unstable; urgency=low
+
+  * Don't use \z in dpkg-scansources, Closes: Bug# 53182
+
+ -- Wichert Akkerman <wakkerma@debian.org>  UNRELEASED
+
 dpkg (1.6.4) unstable; urgency=low
 
   * No longer byte-compile for emacs
index ebdbf9cc844ce2d8c16fa3d23d90d2c94620c4cb..71adaef6183c4d2ed014a5584a5711a6124f835c 100755 (executable)
@@ -86,7 +86,7 @@ binary-dpkg: stamp-binary
                done ; \
                install -d -m 755 -o root -g root $(TMP_DPKG)/usr/share/man/$$i/man8 ; \
                for m in dpkg.8 dselect.8 dpkg-split.8 start-stop-daemon.8 \
-                       cleanup-info dpkg-divert.8 \
+                       cleanup-info.8 dpkg-divert.8 \
                        install-info.8 update-alternatives.8 update-rc.d.8 ; do \
                        if [ -f $(TMP)/usr/share/man/$$i/man8/$$m ] ; then \
                                mv $(TMP)/usr/share/man/$$i/man8/$$m $(TMP_DPKG)/usr/share/man/$$i/man8/$$m ; \
index 083b5a35147693bfbaf67e234025d8fd976be33e..0cdde2f5feceeb4acad9f799311fc35a0a11477b 100755 (executable)
@@ -317,7 +317,7 @@ sub process_dsc {
 
     # Allow blank lines at the end of a file, because the other programs
     # do.
-    $contents =~ s/\n\n+\z/\n/;
+    $contents =~ s/\n\n+\Z/\n/;
 
     if ($contents =~ /^\n/ || $contents =~ /\n\n/) {
        xwarn_noerror "$file invalid (contains blank line)\n";