diff options
-rw-r--r-- | debian/changelog | 2 | ||||
-rw-r--r-- | debian/patches/uptime_w_path_fix.patch | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index cf92f662..9f6c93a3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -11,6 +11,8 @@ hurd (20110319-3) UNRELEASED; urgency=low Add fd[01]. * debian/patches/disable-proc_getnports.patch: Remove patch, libc0.3 now has proc_getnports, and the hurd package already breaks older versions. + * debian/patches/uptime_w_path_fix.patch: Fix /usr/bin/w-hurd command name, + thanks harish badrinath for the notice. -- Samuel Thibault <sthibault@debian.org> Sun, 10 Apr 2011 20:42:45 +0200 diff --git a/debian/patches/uptime_w_path_fix.patch b/debian/patches/uptime_w_path_fix.patch index 3d5f1c39..a2e595ef 100644 --- a/debian/patches/uptime_w_path_fix.patch +++ b/debian/patches/uptime_w_path_fix.patch @@ -1,4 +1,4 @@ -Debian has a real /usr +Debian has a real /usr and uses w-hurd file name --- utils/uptime.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) @@ -10,7 +10,7 @@ Debian has a real /usr DOC="Show system uptime, number of users, and load" -W=${W-/bin/w} -+W=${W-/usr/bin/w} ++W=${W-/usr/bin/w-hurd} while :; do case "$1" in |