summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1995-08-06 12:37:41 +0000
committerbde <bde@FreeBSD.org>1995-08-06 12:37:41 +0000
commit1d5c50aac763e0bb5ae69fe9d75df1eacc291162 (patch)
tree0d864d80c6cc116ac4cc3bf3bf6595d73f701243
parent6579f34131bcc90bb095184a1ab0c491ba0b59b5 (diff)
downloadFreeBSD-src-1d5c50aac763e0bb5ae69fe9d75df1eacc291162.zip
FreeBSD-src-1d5c50aac763e0bb5ae69fe9d75df1eacc291162.tar.gz
Install source files with the -c flag, not with the optional flag ${COPY}.
-rw-r--r--gnu/usr.sbin/isdn/misc/Makefile6
-rw-r--r--lib/csu/i386/Makefile4
-rw-r--r--lib/libmytinfo/Makefile4
-rw-r--r--lib/libncurses/Makefile6
-rw-r--r--lib/libpcap/Makefile6
-rw-r--r--lib/ncurses/ncurses/Makefile6
6 files changed, 16 insertions, 16 deletions
diff --git a/gnu/usr.sbin/isdn/misc/Makefile b/gnu/usr.sbin/isdn/misc/Makefile
index 914fddd..16b1e95 100644
--- a/gnu/usr.sbin/isdn/misc/Makefile
+++ b/gnu/usr.sbin/isdn/misc/Makefile
@@ -14,8 +14,8 @@ stime: stime.c
install: all
${INSTALL} ${COPY} tst ${BINDIR}/isdn_test
${INSTALL} ${COPY} stime ${BINDIR}/isdn_stime
- ${INSTALL} ${COPY} -m 755 setnic.sh ${LIBDIR}/setnic
- ${INSTALL} ${COPY} -m 755 sisdn.sh ${LIBDIR}/sisdn.example
- ${INSTALL} ${COPY} ${ETCFILES} ${LIBDIR}
+ ${INSTALL} -c -m 755 setnic.sh ${LIBDIR}/setnic
+ ${INSTALL} -c -m 755 sisdn.sh ${LIBDIR}/sisdn.example
+ ${INSTALL} -c ${ETCFILES} ${LIBDIR}
.include <bsd.prog.mk>
diff --git a/lib/csu/i386/Makefile b/lib/csu/i386/Makefile
index 2a2f7dc..a816e6a 100644
--- a/lib/csu/i386/Makefile
+++ b/lib/csu/i386/Makefile
@@ -1,5 +1,5 @@
# from: @(#)Makefile 5.6 (Berkeley) 5/22/91
-# $Id: Makefile,v 1.16 1995/06/30 15:30:35 wollman Exp $
+# $Id: Makefile,v 1.17 1995/08/06 12:23:18 bde Exp $
CFLAGS+= -DLIBC_SCCS -DDYNAMIC
OBJS= crt0.o gcrt0.o c++rt0.o
@@ -32,7 +32,7 @@ gcrt0.o: crt0.o
beforeinstall:
cmp -s ${.CURDIR}/dlfcn.h ${DESTDIR}/usr/include/dlfcn.h || \
- ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \
+ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \
${.CURDIR}/dlfcn.h ${DESTDIR}/usr/include
realinstall:
diff --git a/lib/libmytinfo/Makefile b/lib/libmytinfo/Makefile
index e22ed7b..a5593c2 100644
--- a/lib/libmytinfo/Makefile
+++ b/lib/libmytinfo/Makefile
@@ -1,7 +1,7 @@
# Makefile for libmytinfo
# Use 'make update_term_h' manually after changing internal
# mytinfo structures
-# $Id: Makefile,v 1.7 1994/10/28 06:58:04 ache Exp $
+# $Id: Makefile,v 1.8 1994/11/16 11:54:09 ache Exp $
LIB= mytinfo
SRCS= addstr.c binorder.c buildpath.c caplist.c capsort.c compar.c\
@@ -22,7 +22,7 @@ update_term_h: ${.CURDIR}/term.head ${.CURDIR}/term.tail
beforeinstall:
-cmp -s ${.CURDIR}/term.h ${DESTDIR}/usr/include/term.h && \
cmp -s ${.CURDIR}/term.h ${DESTDIR}/usr/include/nterm.h || \
- ( $(INSTALL) $(COPY) -o ${BINOWN} -g ${BINGRP} -m 444 \
+ ( $(INSTALL) -c -o ${BINOWN} -g ${BINGRP} -m 444 \
${.CURDIR}/term.h ${DESTDIR}/usr/include; \
rm -f ${DESTDIR}/usr/include/nterm.h; \
ln -s term.h ${DESTDIR}/usr/include/nterm.h )
diff --git a/lib/libncurses/Makefile b/lib/libncurses/Makefile
index 65f7a57..90fdfd7 100644
--- a/lib/libncurses/Makefile
+++ b/lib/libncurses/Makefile
@@ -1,5 +1,5 @@
# Makefile for ncurses
-# $Id: Makefile,v 1.12 1995/05/03 18:54:09 ache Exp $
+# $Id: Makefile,v 1.13 1995/05/08 16:08:49 ache Exp $
LIB= ncurses
SHLIB_MAJOR= 3
@@ -25,10 +25,10 @@ beforedepend: keys.tries
beforeinstall:
@cd ${.CURDIR}; for i in unctrl.h; do \
cmp -s $$i ${DESTDIR}/usr/include/$$i || \
- $(INSTALL) $(COPY) -m 444 -o $(BINOWN) -g $(BINGRP) $$i \
+ $(INSTALL) -c -m 444 -o $(BINOWN) -g $(BINGRP) $$i \
${DESTDIR}/usr/include; done
@cd ${.CURDIR}; cmp -s curses.h ${DESTDIR}/usr/include/ncurses.h || \
- $(INSTALL) $(COPY) -m 444 -o $(BINOWN) -g $(BINGRP) curses.h \
+ $(INSTALL) -c -m 444 -o $(BINOWN) -g $(BINGRP) curses.h \
${DESTDIR}/usr/include/ncurses.h
keys.tries: ${.CURDIR}/keys.list ${.CURDIR}/MKkeys.awk
diff --git a/lib/libpcap/Makefile b/lib/libpcap/Makefile
index 87b1636..50d6c92 100644
--- a/lib/libpcap/Makefile
+++ b/lib/libpcap/Makefile
@@ -1,5 +1,5 @@
# Makefile for libpcap
-# $Id: Makefile,v 1.2 1995/02/21 10:46:25 olah Exp $
+# $Id: Makefile,v 1.3 1995/02/23 18:47:06 ache Exp $
LIB= pcap
@@ -16,10 +16,10 @@ MAN3= pcap.3
beforeinstall:
-cmp -s ${.CURDIR}/pcap.h ${DESTDIR}/usr/include/pcap.h || \
- ( $(INSTALL) $(COPY) -o ${BINOWN} -g ${BINGRP} -m 444 \
+ ( $(INSTALL) -c -o ${BINOWN} -g ${BINGRP} -m 444 \
${.CURDIR}/pcap.h ${DESTDIR}/usr/include; )
-cmp -s ${.CURDIR}/pcap-namedb.h ${DESTDIR}/usr/include/pcap-namedb.h || \
- ( $(INSTALL) $(COPY) -o ${BINOWN} -g ${BINGRP} -m 444 \
+ ( $(INSTALL) -c -o ${BINOWN} -g ${BINGRP} -m 444 \
${.CURDIR}/pcap-namedb.h ${DESTDIR}/usr/include; )
scanner.o: tokdefs.h
diff --git a/lib/ncurses/ncurses/Makefile b/lib/ncurses/ncurses/Makefile
index 65f7a57..90fdfd7 100644
--- a/lib/ncurses/ncurses/Makefile
+++ b/lib/ncurses/ncurses/Makefile
@@ -1,5 +1,5 @@
# Makefile for ncurses
-# $Id: Makefile,v 1.12 1995/05/03 18:54:09 ache Exp $
+# $Id: Makefile,v 1.13 1995/05/08 16:08:49 ache Exp $
LIB= ncurses
SHLIB_MAJOR= 3
@@ -25,10 +25,10 @@ beforedepend: keys.tries
beforeinstall:
@cd ${.CURDIR}; for i in unctrl.h; do \
cmp -s $$i ${DESTDIR}/usr/include/$$i || \
- $(INSTALL) $(COPY) -m 444 -o $(BINOWN) -g $(BINGRP) $$i \
+ $(INSTALL) -c -m 444 -o $(BINOWN) -g $(BINGRP) $$i \
${DESTDIR}/usr/include; done
@cd ${.CURDIR}; cmp -s curses.h ${DESTDIR}/usr/include/ncurses.h || \
- $(INSTALL) $(COPY) -m 444 -o $(BINOWN) -g $(BINGRP) curses.h \
+ $(INSTALL) -c -m 444 -o $(BINOWN) -g $(BINGRP) curses.h \
${DESTDIR}/usr/include/ncurses.h
keys.tries: ${.CURDIR}/keys.list ${.CURDIR}/MKkeys.awk
OpenPOWER on IntegriCloud