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/libss | |
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/libss')
-rw-r--r-- | lib/libss/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libss/Makefile b/lib/libss/Makefile index 3a97aaf..88adaaa 100644 --- a/lib/libss/Makefile +++ b/lib/libss/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.9 1995/08/06 12:24:05 bde Exp $ +# $Id: Makefile,v 1.10 1995/08/06 12:41:07 bde Exp $ LIB= ss SRCS= ss_err.c data.c error.c execute_cmd.c help.c invocation.c list_rqs.c \ @@ -16,12 +16,12 @@ LDADD+= -lcom_err ss_err.h ss_err.c: ${.CURDIR}/ss_err.et test -e ss_err.et || ln -s ${.CURDIR}/ss_err.et . compile_et ss_err.et - -test -h ss_err.et && rm ss_err.et + -test -h ss_err.et && rm -f ss_err.et std_rqs.c: ${.CURDIR}/std_rqs.ct test -e std_rqs.ct || ln -s ${.CURDIR}/std_rqs.ct . mk_cmds std_rqs.ct - -test -h std_rqs.ct && rm std_rqs.ct + -test -h std_rqs.ct && rm -f std_rqs.ct beforeinstall: -cd ${.CURDIR}; cmp -s ss.h ${DESTDIR}/usr/include/ss/ss.h || \ |