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 --- libexec/rtld-aout/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libexec/rtld-aout/Makefile') diff --git a/libexec/rtld-aout/Makefile b/libexec/rtld-aout/Makefile index 5898649..7fc09fc 100644 --- a/libexec/rtld-aout/Makefile +++ b/libexec/rtld-aout/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.17 1996/01/11 17:27:16 phk Exp $ +# $Id: Makefile,v 1.18 1996/01/11 17:49:55 phk Exp $ PROG= ld.so SRCS= mdprologue.S rtld.c malloc.c shlib.c etc.c md.c @@ -26,8 +26,8 @@ realinstall: : -chflags noschg ${DESTDIR}${BINDIR}/${PROG} -ln -f ${DESTDIR}${BINDIR}/${PROG} ${DESTDIR}${BINDIR}/${PROG}.old - mv ${DESTDIR}${BINDIR}/${PROG}.new ${DESTDIR}${BINDIR}/${PROG} + mv -f ${DESTDIR}${BINDIR}/${PROG}.new ${DESTDIR}${BINDIR}/${PROG} chflags schg ${DESTDIR}${BINDIR}/${PROG} - -rm ${DESTDIR}${BINDIR}/${PROG}.old + -rm -f ${DESTDIR}${BINDIR}/${PROG}.old .include -- cgit v1.1