diff options
-rw-r--r-- | debian/changelog | 2 | ||||
-rw-r--r-- | debian/patches/series | 1 | ||||
-rw-r--r-- | debian/patches/uptime_w_path_fix.patch | 11 |
3 files changed, 14 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index 5b1f9dbe..51beb604 100644 --- a/debian/changelog +++ b/debian/changelog @@ -23,6 +23,8 @@ hurd (20080921-1) UNRELEASED; urgency=low * debian/hurd.postinst: Install w and ps alternatives links in /bin, not /usr/bin. * 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. -- Michael Banck <mbanck@debian.org> Sat, 13 Sep 2008 23:43:27 +0200 diff --git a/debian/patches/series b/debian/patches/series index 0183c510..0c41d394 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -17,3 +17,4 @@ startup-usr-support.patch -p0 thread-throttle.patch -p0 tmp_exec_startup.patch -p0 ttys.patch -p1 +uptime_w_path_fix.patch -p1 diff --git a/debian/patches/uptime_w_path_fix.patch b/debian/patches/uptime_w_path_fix.patch new file mode 100644 index 00000000..89afa14c --- /dev/null +++ b/debian/patches/uptime_w_path_fix.patch @@ -0,0 +1,11 @@ +--- hurd-20080921/utils/uptime.sh.orig 2008-09-26 19:20:53.000000000 +0200 ++++ hurd-20080921/utils/uptime.sh 2008-09-26 19:21:01.000000000 +0200 +@@ -25,7 +25,7 @@ + USAGE="Usage: $0 [OPTION...]" + DOC="Show system uptime, number of users, and load" + +-W=${W-/bin/w} ++W=${W-/usr/bin/w} + + while :; do + case "$1" in |