diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-05-13 05:35:02 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-05-13 05:35:02 +0000 |
commit | 1eab4c1ea709703e299cf22769b4408bd1e0f2b3 (patch) | |
tree | 5525546d13e0503081b760ccf509974dd69ea154 /etc/etc.sparc/MAKEDEV | |
parent | 3915bbd2a1acc58e9031ce6a1e6e2f886bc8e143 (diff) |
Only run MAKEDEV.local if it exists. Avoids an error message
during installs where there is no MAKEDEV.local.
Diffstat (limited to 'etc/etc.sparc/MAKEDEV')
-rw-r--r-- | etc/etc.sparc/MAKEDEV | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/etc.sparc/MAKEDEV b/etc/etc.sparc/MAKEDEV index 7a68899d0dc..727eaa6cf04 100644 --- a/etc/etc.sparc/MAKEDEV +++ b/etc/etc.sparc/MAKEDEV @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: MAKEDEV,v 1.25 1997/05/06 19:42:41 niklas Exp $ +# $OpenBSD: MAKEDEV,v 1.26 1997/05/13 05:34:58 millert Exp $ # # Copyright (c) 1990 The Regents of the University of California. # All rights reserved. @@ -460,7 +460,7 @@ ss*) local) umask 0 - sh ${this}.local + test -s MAKEDEV.local && sh MAKEDEV.local ;; *) echo $i: unknown device |