diff options
author | bde <bde@FreeBSD.org> | 1997-01-01 04:22:23 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-01-01 04:22:23 +0000 |
commit | 4fca167e0602e20eccf55195f777621c56f17789 (patch) | |
tree | 15985d72bf018a5d6d67483342b8ca6e6c60215b /usr.sbin/pcvt | |
parent | 2443764d47cba998090b844a05668b0f701a13e6 (diff) | |
download | FreeBSD-src-4fca167e0602e20eccf55195f777621c56f17789.zip FreeBSD-src-4fca167e0602e20eccf55195f777621c56f17789.tar.gz |
Use ${COPY} instead of -c for installing non-source files.
Diffstat (limited to 'usr.sbin/pcvt')
-rw-r--r-- | usr.sbin/pcvt/fonts/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.sbin/pcvt/fonts/Makefile b/usr.sbin/pcvt/fonts/Makefile index 6dedcb5..9d9bf50 100644 --- a/usr.sbin/pcvt/fonts/Makefile +++ b/usr.sbin/pcvt/fonts/Makefile @@ -1,4 +1,3 @@ - .if !exists(${.CURDIR}/../Makefile.inc) error: @echo @@ -27,7 +26,7 @@ install: ${FONTS} @if [ ! -d ${DESTDIR}${FONTDIR} ]; then mkdir ${DESTDIR}${FONTDIR};fi @for i in ${FONTS}; do \ ${ECHO} "installing font $$i into ${DESTDIR}${FONTDIR}"; \ - ${INSTALL} -c -m ${LIBMODE} -o ${LIBOWN} -g ${LIBGRP} \ + ${INSTALL} ${COPY} -m ${LIBMODE} -o ${LIBOWN} -g ${LIBGRP} \ $$i ${DESTDIR}${FONTDIR}; \ done |