From 9f795376b3921c04e5abe4bc29b1905e78ae2db2 Mon Sep 17 00:00:00 2001 From: wosch Date: Tue, 7 May 1996 23:19:49 +0000 Subject: ``mv'' -> ``mv -f'' ``rm'' -> ``rm -f'' so mv/rm may not ask for confirmation if you are not root --- usr.sbin/amd/fsinfo/Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'usr.sbin/amd/fsinfo') diff --git a/usr.sbin/amd/fsinfo/Makefile b/usr.sbin/amd/fsinfo/Makefile index 2ae9344..8a216f5 100644 --- a/usr.sbin/amd/fsinfo/Makefile +++ b/usr.sbin/amd/fsinfo/Makefile @@ -1,4 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 6/28/93 +# $Id: $ PROG= fsinfo MAN8= fsinfo.8 @@ -18,12 +19,12 @@ fsi_lex.o fsinfo.o: fsi_gram.h fsi_gram.c fsi_gram.h: ../fsinfo/fsi_gram.y @echo "# expect 2 shift/reduce conflicts" ${YACC} -d ${.CURDIR}/fsi_gram.y - mv y.tab.c fsi_gram.c - mv y.tab.h fsi_gram.h + mv -f y.tab.c fsi_gram.c + mv -f y.tab.h fsi_gram.h fsi_lex.c: ../fsinfo/fsi_lex.l ${LEX} ${.CURDIR}/fsi_lex.l - mv lex.yy.c fsi_lex.c + mv -f lex.yy.c fsi_lex.c .PATH: ${.CURDIR}/../config .include "../../Makefile.inc" -- cgit v1.1