diff options
author | Wichert Akkerman <wakkerma@debian.org> | 1999-10-05 21:55:25 +0000 |
---|---|---|
committer | Wichert Akkerman <wakkerma@debian.org> | 1999-10-05 21:55:25 +0000 |
commit | 60e8a0dd4007dbd069bfc09f7c1afcd1427f9ca7 (patch) | |
tree | 8b4d4fddd4afa1a928629675ec57c924becce0a9 /debian | |
parent | 10dc0308548fe87212becf776ca6520fda91c321 (diff) | |
download | dpkg-60e8a0dd4007dbd069bfc09f7c1afcd1427f9ca7.tar.gz |
Fix installation-problems
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 3 | ||||
-rwxr-xr-x | debian/rules | 10 |
2 files changed, 7 insertions, 6 deletions
diff --git a/debian/changelog b/debian/changelog index ce2f1242e..382153b50 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,8 +4,9 @@ dpkg (1.4.1.14) unstable; urgency=low * dpkg-source works again on empty diffs, Closes: Bug# 46159 * Install locale-files in /usr/share, Closes: Bug# 46631 * Make /usr/share/doc/dpkg-dev a symlink to /usr/share/doc/dpkg + * Actually include fix to make update-alternatives works filesystems (oops!) - -- Wichert Akkerman <wakkerma@debian.org> UNRELEASED + -- Wichert Akkerman <wakkerma@debian.org> Tue, 5 Oct 1999 19:19:05 +0200 dpkg (1.4.1.13) unstable; urgency=low diff --git a/debian/rules b/debian/rules index eedbef785..ea301855c 100755 --- a/debian/rules +++ b/debian/rules @@ -28,10 +28,10 @@ $(BUILD)/config.status: install -d debian/build cd $(BUILD) && ../../configure \ --enable-shared \ - --prefix=/usr/share \ - --exec-prefix=/usr \ + --prefix=/usr \ --datadir=/usr/share \ --mandir=/usr/share/man \ + --infodir=/usr/share/info \ --sysconfdir=/etc \ --sharedstatedir=/var/lib \ --localstatedir=/var/lib @@ -72,18 +72,18 @@ binary-trees: build cp debian/{prerm,postinst} $(mcidir)/. $(MAKE) -C $(BUILD) top_distdir=. dist $(MAKE) -C $(BUILD) \ - prefix=$(DIR)/debian/tmp-main/usr/share \ - exec_prefix=$(DIR)/debian/tmp-main/usr \ + prefix=$(DIR)/debian/tmp-main/usr \ sysconfdir=$(DIR)/debian/tmp-main/etc \ datadir=$(DIR)/debian/tmp-main/usr/share \ mandir=$(DIR)/debian/tmp-main/usr/share/man \ + infodir=$(DIR)/debian/tmp-main/usr/share/info \ sharedstatedir=$(DIR)/debian/tmp-main/var/lib \ localstatedir=$(DIR)/debian/tmp-main/var/lib \ install install -m 755 debian/dev-postinst debian/tmp-dev/DEBIAN/postinst install -m 755 debian/dev-prerm debian/tmp-dev/DEBIAN/prerm install -d debian/tmp-dev/etc/emacs/site-start.d - install -c debian/50dpkg-dev.el debian/tmp-dev/etc/emacs/site-start.d/. + install -m 644 debian/50dpkg-dev.el debian/tmp-dev/etc/emacs/site-start.d/. install -d debian/tmp-dev/usr/lib/emacsen-common/packages/{install,remove} install -m 755 debian/emacsen-common-remove \ debian/tmp-dev/usr/lib/emacsen-common/packages/remove/dpkg-dev |