From: Wichert Akkerman Date: Thu, 14 Oct 1999 02:54:27 +0000 (+0000) Subject: Use POSIX instead of Errno X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1092baf37debae0e5bd5c18960e8cbc47e114905;p=dpkg Use POSIX instead of Errno Fixup debian/rules --- diff --git a/ChangeLog b/ChangeLog index 3143a1d8..4124e387 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Thu Oct 14 04:51:14 CEST 1999 Wichert Akkerman + + * 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 * Update dpkg manpage to add new --force-conf* options diff --git a/debian/rules b/debian/rules index ed8257a0..bcbea7d9 100755 --- a/debian/rules +++ b/debian/rules @@ -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 diff --git a/scripts/dpkg-divert.pl b/scripts/dpkg-divert.pl index 7dd53b3b..beed7f1f 100755 --- a/scripts/dpkg-divert.pl +++ b/scripts/dpkg-divert.pl @@ -1,6 +1,6 @@ #!/usr/bin/perl -- -use Errno; +use POSIX; $version= '1.0.11'; # This line modified by Makefile sub usageversion { diff --git a/scripts/update-alternatives.pl b/scripts/update-alternatives.pl index e312f5be..c23ef3fe 100755 --- a/scripts/update-alternatives.pl +++ b/scripts/update-alternatives.pl @@ -1,6 +1,6 @@ #!/usr/bin/perl -- -use Errno; +use POSIX; $version= '0.93.80'; # This line modified by Makefile sub usageversion {