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.mvme68k | |
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.mvme68k')
-rw-r--r-- | etc/etc.mvme68k/MAKEDEV | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/etc.mvme68k/MAKEDEV b/etc/etc.mvme68k/MAKEDEV index 629877ae3e2..8ed0aea806d 100644 --- a/etc/etc.mvme68k/MAKEDEV +++ b/etc/etc.mvme68k/MAKEDEV @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: MAKEDEV,v 1.17 1997/04/22 20:26:38 gvf Exp $ +# $OpenBSD: MAKEDEV,v 1.18 1997/05/13 05:34:54 millert Exp $ # # Copyright (c) 1990 The Regents of the University of California. # All rights reserved. @@ -33,7 +33,7 @@ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # -# $Id: MAKEDEV,v 1.17 1997/04/22 20:26:38 gvf Exp $ +# $Id: MAKEDEV,v 1.18 1997/05/13 05:34:54 millert Exp $ # # Device "make" file. Valid arguments: # all makes all known devices, including local devices, @@ -415,7 +415,7 @@ ss*) local) umask 0 - sh MAKEDEV.local + test -s MAKEDEV.local && sh MAKEDEV.local umask 77 ;; |