diff options
author | Michael Banck <mbanck@debian.org> | 2008-09-26 17:22:49 +0000 |
---|---|---|
committer | Michael Banck <mbanck@debian.org> | 2008-09-26 17:22:49 +0000 |
commit | 421ccd6639606cd4ccd898949ab1bee078102124 (patch) | |
tree | dac0650e59b6ec70cd3b0a00c5b2000bcc7c8cd5 /debian/patches | |
parent | 5c1a95d9fe859a51b7afec3bb9625da13e437316 (diff) |
* debian/patches/uptime_w_path_fix.patch: New patch, run /usr/bin/w instead
of /bin/w.
Diffstat (limited to 'debian/patches')
-rw-r--r-- | debian/patches/series | 1 | ||||
-rw-r--r-- | debian/patches/uptime_w_path_fix.patch | 11 |
2 files changed, 12 insertions, 0 deletions
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 |