aboutsummaryrefslogtreecommitdiff
path: root/libexec/rtld-aout
diff options
context:
space:
mode:
authorWolfram Schneider <wosch@FreeBSD.org>1996-05-07 23:19:49 +0000
committerWolfram Schneider <wosch@FreeBSD.org>1996-05-07 23:19:49 +0000
commit9fb933075efacc206d4968ca872ad7ea94349ba4 (patch)
tree5618f6a0a4a19c1125bc494850591fa1ee21df48 /libexec/rtld-aout
parent757dab8dcb5c53176aa0d6e82e3a0649d119f7e5 (diff)
downloadsrc-9fb933075efacc206d4968ca872ad7ea94349ba4.tar.gz
src-9fb933075efacc206d4968ca872ad7ea94349ba4.zip
``mv'' -> ``mv -f''
``rm'' -> ``rm -f'' so mv/rm may not ask for confirmation if you are not root
Notes
Notes: svn path=/head/; revision=15679
Diffstat (limited to 'libexec/rtld-aout')
-rw-r--r--libexec/rtld-aout/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/rtld-aout/Makefile b/libexec/rtld-aout/Makefile
index 589864963d5b..7fc09fcb3225 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 <bsd.prog.mk>