Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/games/caesar Don't rely upon /usr/games being in PATH, inclu...



details:   https://anonhg.NetBSD.org/src/rev/3d0d22202d09
branches:  trunk
changeset: 485298:3d0d22202d09
user:      hubertf <hubertf%NetBSD.org@localhost>
date:      Mon Apr 24 13:21:26 2000 +0000

description:
Don't rely upon /usr/games being in PATH, include it explicitly.

Fixes PR 9968 by yyrkoo%imrryr.org@localhost.

diffstat:

 games/caesar/rot13.sh |  4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diffs (17 lines):

diff -r 9b731a0759cb -r 3d0d22202d09 games/caesar/rot13.sh
--- a/games/caesar/rot13.sh     Mon Apr 24 13:02:28 2000 +0000
+++ b/games/caesar/rot13.sh     Mon Apr 24 13:21:26 2000 +0000
@@ -1,5 +1,5 @@
 #!/bin/sh -
-#      $NetBSD: rot13.sh,v 1.2 1995/03/21 15:08:23 cgd Exp $
+#      $NetBSD: rot13.sh,v 1.3 2000/04/24 13:21:26 hubertf Exp $
 #
 # Copyright (c) 1992, 1993
 #      The Regents of the University of California.  All rights reserved.
@@ -35,4 +35,6 @@
 #      @(#)rot13.sh    8.1 (Berkeley) 5/31/93
 #
 
+PATH="/usr/games:$PATH"; export PATH
+
 caesar 13 $*



Home | Main Index | Thread Index | Old Index