diff options
author | wosch <wosch@FreeBSD.org> | 1996-05-07 23:19:49 +0000 |
---|---|---|
committer | wosch <wosch@FreeBSD.org> | 1996-05-07 23:19:49 +0000 |
commit | 9f795376b3921c04e5abe4bc29b1905e78ae2db2 (patch) | |
tree | 5618f6a0a4a19c1125bc494850591fa1ee21df48 /usr.bin/lex | |
parent | 25e7738786079b0070d3ddbd5a6a9fb2279e5c9a (diff) | |
download | FreeBSD-src-9f795376b3921c04e5abe4bc29b1905e78ae2db2.zip FreeBSD-src-9f795376b3921c04e5abe4bc29b1905e78ae2db2.tar.gz |
``mv'' -> ``mv -f''
``rm'' -> ``rm -f''
so mv/rm may not ask for confirmation if you are not root
Diffstat (limited to 'usr.bin/lex')
-rw-r--r-- | usr.bin/lex/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/lex/Makefile b/usr.bin/lex/Makefile index 57e653b..f0d3883 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 |