aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/lex
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 /usr.bin/lex
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 'usr.bin/lex')
-rw-r--r--usr.bin/lex/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/lex/Makefile b/usr.bin/lex/Makefile
index 57e653b13fa3..f0d3883afd6f 100644
--- a/usr.bin/lex/Makefile
+++ b/usr.bin/lex/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.2 1994/08/27 09:52:30 csgr Exp $
+# $Id: Makefile,v 1.3 1996/01/08 09:17:39 peter Exp $
#
# By default, flex will be configured to generate 8-bit scanners only if the
# -8 flag is given. If you want it to always generate 8-bit scanners, add
@@ -37,8 +37,8 @@ beforeinstall:
parse.c parse.h: parse.y
$(YACC) -d $(.CURDIR)/parse.y
- mv y.tab.c parse.c
- mv y.tab.h parse.h
+ mv -f y.tab.c parse.c
+ mv -f y.tab.h parse.h
.if exists(/usr/bin/lex)
scan.o: parse.c