Преглед изворни кода

Use POSIX instead of Errno
Fixup debian/rules

Wichert Akkerman пре 27 година
родитељ
комит
1092baf37d
4 измењених фајлова са 10 додато и 4 уклоњено
  1. 6 0
      ChangeLog
  2. 2 2
      debian/rules
  3. 1 1
      scripts/dpkg-divert.pl
  4. 1 1
      scripts/update-alternatives.pl

+ 6 - 0
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

+ 2 - 2
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

+ 1 - 1
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 {

+ 1 - 1
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 {