diff options
author | ru <ru@FreeBSD.org> | 2002-07-29 09:40:17 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2002-07-29 09:40:17 +0000 |
commit | a8adf98c8204f370670e5624e9e11b497b7c97e8 (patch) | |
tree | 5612f3de1042a85c3a65ed7da6124c3d8da3d097 /gnu | |
parent | 3a86ff2aeb2a498c6d51422bae381540233c6946 (diff) | |
download | FreeBSD-src-a8adf98c8204f370670e5624e9e11b497b7c97e8.zip FreeBSD-src-a8adf98c8204f370670e5624e9e11b497b7c97e8.tar.gz |
Drop support for COPY, -c has been the default mode of install(1)
for a long time now.
Approved by: bde
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/lib/csu/Makefile | 2 | ||||
-rw-r--r-- | gnu/lib/libdialog/Makefile | 2 | ||||
-rw-r--r-- | gnu/usr.bin/binutils/ld/Makefile | 2 | ||||
-rw-r--r-- | gnu/usr.bin/binutils/strip/Makefile | 2 | ||||
-rw-r--r-- | gnu/usr.bin/groff/contrib/mm/Makefile | 2 | ||||
-rw-r--r-- | gnu/usr.bin/groff/font/Makefile.dev | 2 | ||||
-rw-r--r-- | gnu/usr.bin/groff/src/utils/indxbib/Makefile | 2 | ||||
-rw-r--r-- | gnu/usr.bin/groff/tmac/Makefile | 10 | ||||
-rw-r--r-- | gnu/usr.bin/rcs/rcsfreeze/Makefile | 2 | ||||
-rw-r--r-- | gnu/usr.bin/send-pr/Makefile | 2 |
10 files changed, 14 insertions, 14 deletions
diff --git a/gnu/lib/csu/Makefile b/gnu/lib/csu/Makefile index b65c195..780e7fd 100644 --- a/gnu/lib/csu/Makefile +++ b/gnu/lib/csu/Makefile @@ -61,7 +61,7 @@ tconfig.h: ${CCDIR}/cc_tools/Makefile realinstall: .for file in ${OBJS} ${SOBJS} ${TGTOBJS} - ${INSTALL} ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \ + ${INSTALL} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \ ${file} ${DESTDIR}${LIBDIR}/${file:S/.So$/S.o/} .endfor diff --git a/gnu/lib/libdialog/Makefile b/gnu/lib/libdialog/Makefile index 856b777..d2b9e94 100644 --- a/gnu/lib/libdialog/Makefile +++ b/gnu/lib/libdialog/Makefile @@ -24,7 +24,7 @@ DPADD+= ${LIBNCURSES} .if !defined(NOHTML) afterinstall: .for file in ${EXAMPLES} - ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \ + ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \ ${.CURDIR}/TESTS/${file} ${DESTDIR}/usr/share/examples/libdialog .endfor .endif diff --git a/gnu/usr.bin/binutils/ld/Makefile b/gnu/usr.bin/binutils/ld/Makefile index 38e31ee..a2fc8cb 100644 --- a/gnu/usr.bin/binutils/ld/Makefile +++ b/gnu/usr.bin/binutils/ld/Makefile @@ -52,7 +52,7 @@ stringify.sed: ln -sf ${SRCDIR}/ld/emultempl/astring.sed ${.TARGET} afterinstall: - ${INSTALL} ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \ + ${INSTALL} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \ ${LDSCRIPTS:S|^|ldscripts/|} ${DESTDIR}${SCRIPTDIR} .include <bsd.prog.mk> diff --git a/gnu/usr.bin/binutils/strip/Makefile b/gnu/usr.bin/binutils/strip/Makefile index 4dc10c2..c059b4b 100644 --- a/gnu/usr.bin/binutils/strip/Makefile +++ b/gnu/usr.bin/binutils/strip/Makefile @@ -26,7 +26,7 @@ maybe_stripped: strip .endif realinstall: - ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ + ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ maybe_stripped ${DESTDIR}${BINDIR}/strip .include <bsd.prog.mk> diff --git a/gnu/usr.bin/groff/contrib/mm/Makefile b/gnu/usr.bin/groff/contrib/mm/Makefile index 13686f0..63911be 100644 --- a/gnu/usr.bin/groff/contrib/mm/Makefile +++ b/gnu/usr.bin/groff/contrib/mm/Makefile @@ -24,7 +24,7 @@ CLEANFILES+= ${MAN} beforeinstall: .for locale in ${LOCALE} .if !exists(${DESTDIR}${TMACDIR}/mm/${locale}) - ${INSTALL} ${COPY} -o ${FILESOWN} -g ${FILESGRP} -m ${FILESMODE} \ + ${INSTALL} -o ${FILESOWN} -g ${FILESGRP} -m ${FILESMODE} \ /dev/null ${DESTDIR}${TMACDIR}/mm/${locale} .endif .endfor diff --git a/gnu/usr.bin/groff/font/Makefile.dev b/gnu/usr.bin/groff/font/Makefile.dev index e3066ca..a485d1c 100644 --- a/gnu/usr.bin/groff/font/Makefile.dev +++ b/gnu/usr.bin/groff/font/Makefile.dev @@ -5,7 +5,7 @@ DEVICEDIR?= ${fontdir}/dev${DEV} all: ${DEVFILES} beforeinstall: ${DEVFILES} - ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \ + ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \ ${.ALLSRC} ${DESTDIR}${DEVICEDIR} .include <bsd.prog.mk> diff --git a/gnu/usr.bin/groff/src/utils/indxbib/Makefile b/gnu/usr.bin/groff/src/utils/indxbib/Makefile index 3a5c786..67970af 100644 --- a/gnu/usr.bin/groff/src/utils/indxbib/Makefile +++ b/gnu/usr.bin/groff/src/utils/indxbib/Makefile @@ -7,7 +7,7 @@ LDADD= ${LIBBIB} ${LIBGROFF} -lm CLEANFILES= ${MAN} beforeinstall: - ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \ + ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \ ${DIST_DIR}/eign ${DESTDIR}${SHAREDIR}/dict/ .include <bsd.prog.mk> diff --git a/gnu/usr.bin/groff/tmac/Makefile b/gnu/usr.bin/groff/tmac/Makefile index d7da734..95966ab 100644 --- a/gnu/usr.bin/groff/tmac/Makefile +++ b/gnu/usr.bin/groff/tmac/Makefile @@ -53,22 +53,22 @@ $f-s: $f beforeinstall: cd ${DIST_DIR}; \ - ${INSTALL} ${COPY} -o ${TMACOWN} -g ${TMACGRP} -m ${TMACMODE} \ + ${INSTALL} -o ${TMACOWN} -g ${TMACGRP} -m ${TMACMODE} \ ${NORMALFILES} ${DESTDIR}${TMACDIR} cd ${.CURDIR}; \ - ${INSTALL} ${COPY} -o ${TMACOWN} -g ${TMACGRP} -m ${TMACMODE} \ + ${INSTALL} -o ${TMACOWN} -g ${TMACGRP} -m ${TMACMODE} \ hyphen.us-ru ${DESTDIR}${TMACDIR} cd ${.OBJDIR} .for f in ${STRIPFILES} ${SPECIALFILES} - ${INSTALL} ${COPY} -o ${TMACOWN} -g ${TMACGRP} -m ${TMACMODE} \ + ${INSTALL} -o ${TMACOWN} -g ${TMACGRP} -m ${TMACMODE} \ $f-s ${DESTDIR}${TMACDIR}/$f .endfor .for f in ${MDOCFILES} - ${INSTALL} ${COPY} -o ${TMACOWN} -g ${TMACGRP} -m ${TMACMODE} \ + ${INSTALL} -o ${TMACOWN} -g ${TMACGRP} -m ${TMACMODE} \ $f-s ${DESTDIR}${MDOCDIR}/$f .endfor .if !exists(${DESTDIR}${TMACDIR}/man.local) - ${INSTALL} ${COPY} -o ${TMACOWN} -g ${TMACGRP} -m ${TMACMODE} \ + ${INSTALL} -o ${TMACOWN} -g ${TMACGRP} -m ${TMACMODE} \ ${DIST_DIR}/man.local ${DESTDIR}${TMACDIR} .endif diff --git a/gnu/usr.bin/rcs/rcsfreeze/Makefile b/gnu/usr.bin/rcs/rcsfreeze/Makefile index b59217b..6b5c348 100644 --- a/gnu/usr.bin/rcs/rcsfreeze/Makefile +++ b/gnu/usr.bin/rcs/rcsfreeze/Makefile @@ -3,7 +3,7 @@ MAN= rcsfreeze.1 afterinstall: - ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ + ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${.CURDIR}/rcsfreeze.sh ${DESTDIR}${BINDIR}/rcsfreeze .include "../../Makefile.inc" diff --git a/gnu/usr.bin/send-pr/Makefile b/gnu/usr.bin/send-pr/Makefile index 1f698b1..c48eff6 100644 --- a/gnu/usr.bin/send-pr/Makefile +++ b/gnu/usr.bin/send-pr/Makefile @@ -29,7 +29,7 @@ send-pr.el: send-pr-el.in Makefile # called from /usr/src/etc/Makefile etc-gnats-freefall: - ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 0644 \ + ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 0644 \ ${.CURDIR}/categories ${DESTDIR}/etc/gnats/freefall .include <bsd.prog.mk> |