]> err.no Git - dpkg/commitdiff
Use POSIX instead of Errno
authorWichert Akkerman <wakkerma@debian.org>
Thu, 14 Oct 1999 02:54:27 +0000 (02:54 +0000)
committerWichert Akkerman <wakkerma@debian.org>
Thu, 14 Oct 1999 02:54:27 +0000 (02:54 +0000)
Fixup debian/rules

ChangeLog
debian/rules
scripts/dpkg-divert.pl
scripts/update-alternatives.pl

index 3143a1d8788579cb371aeb05b2d71c507bcac722..4124e38704aff2c274f49b0705ec2651de8d90f9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Thu Oct 14 04:51:14 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
+
+  * Don't use Errno module but the POSIX module, since that *is*
+    in perl-*-base
+  * Fixup debian/rules
+
 Thu Oct 14 04:39:25 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
 
   * Update dpkg manpage to add new --force-conf* options
index ed8257a08ef406ca1441f33680b82e7a5a98f6da..bcbea7d98f060e6d186eaaecc7eca5898e12baf8 100755 (executable)
@@ -11,7 +11,7 @@ arch=$(shell dpkg --print-architecture)
 mcidir=debian/tmp-main/DEBIAN
 
 
-maintainer-configure: Makefile.am configure.in
+configure: Makefile.am configure.in
        $(checkdir)
        mkdir -p automake
        aclocal -I ./automake
@@ -27,7 +27,7 @@ maintainer-configure: Makefile.am configure.in
                automake --foreign ; \
                autoconf
 
-$(BUILD)/config.status:
+$(BUILD)/config.status: configure
        $(checkdir)
        $(RM) -r debian/build
        install -d debian/build
index 7dd53b3b7758a6d0b497e2372f71759825b3afd5..beed7f1ff0bef734f29d3f097c5896677a59d0bb 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/perl --
 
-use Errno;
+use POSIX;
 
 $version= '1.0.11'; # This line modified by Makefile
 sub usageversion {
index e312f5be8738884056a7008ea09614e357994391..c23ef3fef0df9751f1a917464e59e5cbbb5c7dcc 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/perl --
 
-use Errno;
+use POSIX;
 
 $version= '0.93.80'; # This line modified by Makefile
 sub usageversion {