diff options
author | Thomas Bushnell <thomas@gnu.org> | 1999-02-18 07:15:09 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1999-02-18 07:15:09 +0000 |
commit | b2a6f425757ea52463ec2353712cc79b3446f60c (patch) | |
tree | 60d1c15a1268f94734bea52d6b511fc5a399767f /sutils | |
parent | db70e2203e2b3ad5bfc50b9945bce3a3913b00df (diff) |
Thu Feb 18 02:13:47 1999 Thomas Bushnell, BSG <tb@mit.edu>
* MAKEDEV.sh (mkdev): put `time' in single-quotes; it's a reserved
word in bash 2.02 and this protects it. Reported by OKUJI
Yoshinori <okuji@kuicr.kyoto-u.ac.jp>.
Diffstat (limited to 'sutils')
-rw-r--r-- | sutils/ChangeLog | 6 | ||||
-rw-r--r-- | sutils/MAKEDEV.sh | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/sutils/ChangeLog b/sutils/ChangeLog index 98d65174..6f202ba6 100644 --- a/sutils/ChangeLog +++ b/sutils/ChangeLog @@ -1,3 +1,9 @@ +Thu Feb 18 02:13:47 1999 Thomas Bushnell, BSG <tb@mit.edu> + + * MAKEDEV.sh (mkdev): put `time' in single-quotes; it's a reserved + word in bash 2.02 and this protects it. Reported by OKUJI + Yoshinori <okuji@kuicr.kyoto-u.ac.jp>. + Mon Feb 1 16:27:15 1999 Thomas Bushnell, BSG <tb@mit.edu> * MAKEDEV.sh (PATH): Add /usr/bin out of deference to users diff --git a/sutils/MAKEDEV.sh b/sutils/MAKEDEV.sh index 3c26f473..c1842a66 100644 --- a/sutils/MAKEDEV.sh +++ b/sutils/MAKEDEV.sh @@ -105,7 +105,7 @@ function mkdev { cmd ln -f -s fd/1 $dir/stdout cmd ln -f -s fd/2 $dir/stderr ;; - time) + 'time') st $I root 666 /hurd/storeio time ;; # ptys |