summaryrefslogtreecommitdiffstats
path: root/gnu/lib
diff options
context:
space:
mode:
authorwosch <wosch@FreeBSD.org>1996-05-07 23:19:49 +0000
committerwosch <wosch@FreeBSD.org>1996-05-07 23:19:49 +0000
commit9f795376b3921c04e5abe4bc29b1905e78ae2db2 (patch)
tree5618f6a0a4a19c1125bc494850591fa1ee21df48 /gnu/lib
parent25e7738786079b0070d3ddbd5a6a9fb2279e5c9a (diff)
downloadFreeBSD-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 'gnu/lib')
-rw-r--r--gnu/lib/libgcc/Makefile6
-rw-r--r--gnu/lib/libgmp/Makefile6
-rw-r--r--gnu/lib/libregex/test/Makefile4
-rw-r--r--gnu/lib/libregex/test/Makefile.in4
4 files changed, 12 insertions, 8 deletions
diff --git a/gnu/lib/libgcc/Makefile b/gnu/lib/libgcc/Makefile
index e18fcde..e6024eb 100644
--- a/gnu/lib/libgcc/Makefile
+++ b/gnu/lib/libgcc/Makefile
@@ -1,5 +1,5 @@
#
-# $Id: Makefile,v 1.7 1995/03/12 09:37:26 phk Exp $
+# $Id: Makefile,v 1.8 1995/03/12 20:17:07 phk Exp $
#
LIB= gcc
@@ -17,12 +17,12 @@ P2OBJS=${LIB2OBJS:.o=.po}
${LIB1OBJS}: libgcc1.c
${CC} -c ${CFLAGS} -DL${.PREFIX} -o ${.TARGET} ${.CURDIR}/libgcc1.c
@${LD} -x -r ${.TARGET}
- @mv a.out ${.TARGET}
+ @mv -f a.out ${.TARGET}
${LIB2OBJS}: libgcc2.c
${CC} -c ${CFLAGS} -DL${.PREFIX} -o ${.TARGET} ${.CURDIR}/libgcc2.c
@${LD} -x -r ${.TARGET}
- @mv a.out ${.TARGET}
+ @mv -f a.out ${.TARGET}
.if !defined(NOPIC)
${LIB1SOBJS}: libgcc1.c
diff --git a/gnu/lib/libgmp/Makefile b/gnu/lib/libgmp/Makefile
index 11ebb87..d59fc24 100644
--- a/gnu/lib/libgmp/Makefile
+++ b/gnu/lib/libgmp/Makefile
@@ -1,5 +1,5 @@
# Makefile for libgmp
-# $Id: Makefile,v 1.2 1995/11/25 00:14:03 peter Exp $
+# $Id: Makefile,v 1.3 1995/11/26 09:51:42 bde Exp $
LIB= gmp
SRCS= $(GMP_SRCS)
@@ -53,10 +53,10 @@ cre-conv-tab: gmp-mparam.h
gmp-mparam.h: cre-mparam
./cre-mparam > tmp-${.TARGET}
- mv tmp-${.TARGET} ${.TARGET}
+ mv -f tmp-${.TARGET} ${.TARGET}
mp_bases.c: cre-conv-tab
./cre-conv-tab > tmp-${.TARGET}
- mv tmp-${.TARGET} ${.TARGET}
+ mv -f tmp-${.TARGET} ${.TARGET}
.include <bsd.lib.mk>
diff --git a/gnu/lib/libregex/test/Makefile b/gnu/lib/libregex/test/Makefile
index 84ebfcb..e8516a8 100644
--- a/gnu/lib/libregex/test/Makefile
+++ b/gnu/lib/libregex/test/Makefile
@@ -1,3 +1,5 @@
+# $Id: $
+
# Generated automatically from Makefile.in by configure.
# Makefile for regex testing.
#
@@ -65,7 +67,7 @@ regex: $(regex_o) $(common_o) $(test_o) main.o
dregex.o: ../regex.c ../regex.h
rm -f $@
$(CC) $(ALL_CPPFLAGS) $(CFLAGS) -c ../$(srcdir)/regex.c
- mv regex.o $@
+ mv -f regex.o $@
# iregex is the interactive regex.
iregex: $(common_o) $(regex_o) iregex.o
diff --git a/gnu/lib/libregex/test/Makefile.in b/gnu/lib/libregex/test/Makefile.in
index fea1f10..5fc51be 100644
--- a/gnu/lib/libregex/test/Makefile.in
+++ b/gnu/lib/libregex/test/Makefile.in
@@ -1,3 +1,5 @@
+# $Id: $
+
# Makefile for regex testing.
#
# Copyright (C) 1992 Free Software Foundation, Inc.
@@ -64,7 +66,7 @@ regex: $(regex_o) $(common_o) $(test_o) main.o
dregex.o: ../regex.c ../regex.h
rm -f $@
$(CC) $(ALL_CPPFLAGS) $(CFLAGS) -c ../$(srcdir)/regex.c
- mv regex.o $@
+ mv -f regex.o $@
# iregex is the interactive regex.
iregex: $(common_o) $(regex_o) iregex.o
OpenPOWER on IntegriCloud