aboutsummaryrefslogtreecommitdiff
path: root/bin/expr/Makefile
diff options
context:
space:
mode:
authorWolfram Schneider <wosch@FreeBSD.org>1996-05-07 23:19:49 +0000
committerWolfram Schneider <wosch@FreeBSD.org>1996-05-07 23:19:49 +0000
commit9fb933075efacc206d4968ca872ad7ea94349ba4 (patch)
tree5618f6a0a4a19c1125bc494850591fa1ee21df48 /bin/expr/Makefile
parent757dab8dcb5c53176aa0d6e82e3a0649d119f7e5 (diff)
downloadsrc-9fb933075efacc206d4968ca872ad7ea94349ba4.tar.gz
src-9fb933075efacc206d4968ca872ad7ea94349ba4.zip
``mv'' -> ``mv -f''
``rm'' -> ``rm -f'' so mv/rm may not ask for confirmation if you are not root
Notes
Notes: svn path=/head/; revision=15679
Diffstat (limited to 'bin/expr/Makefile')
-rw-r--r--bin/expr/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/expr/Makefile b/bin/expr/Makefile
index c98e59fbcb3b..63c0055d945d 100644
--- a/bin/expr/Makefile
+++ b/bin/expr/Makefile
@@ -1,5 +1,5 @@
# /b/source/CVS/src/bin/expr/Makefile,v 1.5 1993/06/14 19:56:06 jtc Exp
-# $Id: Makefile,v 1.6 1994/09/24 02:55:36 davidg Exp $
+# $Id: Makefile,v 1.7 1995/05/30 00:06:49 rgrimes Exp $
PROG= expr
SRCS= expr.c
@@ -7,7 +7,7 @@ CLEANFILES+= expr.c y.tab.h
expr.c:
${YACC} -d ${.IMPSRC}
- mv y.tab.c expr.c
+ mv -f y.tab.c expr.c
.include <bsd.prog.mk>