diff options
-rw-r--r-- | debian/changelog | 2 | ||||
-rw-r--r-- | debian/hurd.postinst | 2 | ||||
-rwxr-xr-x | debian/rules | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog index 84757799..27b4fc2a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -25,7 +25,7 @@ hurd (20080921-1) UNRELEASED; urgency=low * debian/hurd.postinst: Install /proc as passive translator only. * debian/patches/uptime_w_path_fix.patch: New patch, run /usr/bin/w instead of /bin/w. - * debian/rules: Install uptime and vmstat into /usr/bin, not /bin. + * debian/rules: Install fakeroot, uptime and vmstat into /usr/bin, not /bin. * debian/hurd.postinst: Update accordingly. -- Michael Banck <mbanck@debian.org> Sat, 13 Sep 2008 23:43:27 +0200 diff --git a/debian/hurd.postinst b/debian/hurd.postinst index 34295466..3713c7e6 100644 --- a/debian/hurd.postinst +++ b/debian/hurd.postinst @@ -6,7 +6,7 @@ update-alternatives --quiet \ --install /libexec/runsystem runsystem /libexec/runsystem.gnu 20 update-alternatives \ - --install /usr/bin/fakeroot fakeroot /bin/fakeroot-hurd 30 + --install /usr/bin/fakeroot fakeroot /usr/bin/fakeroot-hurd 30 update-alternatives \ --install /bin/ps ps /bin/ps-hurd 60 diff --git a/debian/rules b/debian/rules index 1620561c..2053a4b7 100755 --- a/debian/rules +++ b/debian/rules @@ -43,7 +43,7 @@ install/hurd:: # move away fakeroot, ps, uptime, vmstat and w to not conflict with the # ones from other packages - mv debian/tmp/bin/fakeroot debian/tmp/bin/fakeroot-hurd + mv debian/tmp/bin/fakeroot debian/tmp/usr/bin/fakeroot-hurd mv debian/tmp/bin/ps debian/tmp/bin/ps-hurd mv debian/tmp/bin/uptime debian/tmp/usr/bin/uptime-hurd mv debian/tmp/bin/vmstat debian/tmp/usr/bin/vmstat-hurd |