summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authordgregor <dgregor@cvs.openbsd.org>1997-09-07 20:00:41 +0000
committerdgregor <dgregor@cvs.openbsd.org>1997-09-07 20:00:41 +0000
commitf787381f15ad8be1e7db83f4d47f4963913991b0 (patch)
tree2d879861e1ac4ff1bc48cae2e7f72adf9aeb946d /etc
parent2958546c0b72d310f1ca4078be5659cbac26757e (diff)
(Oops.. that last commit was supposed to be aborted.)
Use 'rm -f' instead of 'rm -rf'.
Diffstat (limited to 'etc')
-rw-r--r--etc/etc.alpha/MAKEDEV4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/etc.alpha/MAKEDEV b/etc/etc.alpha/MAKEDEV
index a44b25b3ab4..6d51aeeab57 100644
--- a/etc/etc.alpha/MAKEDEV
+++ b/etc/etc.alpha/MAKEDEV
@@ -1,5 +1,5 @@
#!/bin/sh -
-# $OpenBSD: MAKEDEV,v 1.25 1997/09/07 19:56:10 dgregor Exp $
+# $OpenBSD: MAKEDEV,v 1.26 1997/09/07 20:00:40 dgregor Exp $
# $NetBSD: MAKEDEV,v 1.8.4.1 1996/06/18 00:41:56 cgd Exp $
#
# Copyright (c) 1990 The Regents of the University of California.
@@ -293,7 +293,7 @@ pty*)
while [ $n -lt 16 ]
do
nam=$name`hex $n`
- rm -rf tty$nam pty$nam
+ rm -f tty$nam pty$nam
mknod tty$nam c 4 "$(( $offset + $n ))"
mknod pty$nam c 5 "$(( $offset + $n ))"
n="$(( $n + 1 ))"