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 /lib/libpcap | |
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 'lib/libpcap')
-rw-r--r-- | lib/libpcap/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libpcap/Makefile b/lib/libpcap/Makefile index 50d6c92..161a43f 100644 --- a/lib/libpcap/Makefile +++ b/lib/libpcap/Makefile @@ -1,5 +1,5 @@ # Makefile for libpcap -# $Id: Makefile,v 1.3 1995/02/23 18:47:06 ache Exp $ +# $Id: Makefile,v 1.4 1995/08/06 12:37:41 bde Exp $ LIB= pcap @@ -25,7 +25,7 @@ beforeinstall: scanner.o: tokdefs.h tokdefs.h: grammar.c - mv y.tab.h tokdefs.h + mv -f y.tab.h tokdefs.h .include <bsd.lib.mk> |