aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/stallion
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1997-01-01 04:22:23 +0000
committerBruce Evans <bde@FreeBSD.org>1997-01-01 04:22:23 +0000
commit015a0dc2e45141f57d3f8e49d3eb2e56b56ce5b0 (patch)
tree15985d72bf018a5d6d67483342b8ca6e6c60215b /usr.sbin/stallion
parent7956a30f26b73dfeab2a226ccb9643e10b74fa82 (diff)
Use ${COPY} instead of -c for installing non-source files.
Notes
Notes: svn path=/head/; revision=21155
Diffstat (limited to 'usr.sbin/stallion')
-rw-r--r--usr.sbin/stallion/bootcode/Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.sbin/stallion/bootcode/Makefile b/usr.sbin/stallion/bootcode/Makefile
index 35f3c8fdc1a7..0c8d7af930ba 100644
--- a/usr.sbin/stallion/bootcode/Makefile
+++ b/usr.sbin/stallion/bootcode/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.1 1996/05/04 08:02:10 peter Exp $
+# $Id: Makefile,v 1.2 1996/05/05 07:40:46 peter Exp $
FILES = 2681.sys cdk.sys
@@ -13,7 +13,7 @@ install:
@if [ ! -d ${DESTDIR}${BOOTDIR} ]; then mkdir ${DESTDIR}${BOOTDIR};fi
@for i in ${FILES}; do \
${ECHO} "installing $$i into ${DESTDIR}${BOOTDIR}"; \
- ${INSTALL} -c -m ${LIBMODE} -o ${LIBOWN} -g ${LIBGRP} \
+ ${INSTALL} ${COPY} -m ${LIBMODE} -o ${LIBOWN} -g ${LIBGRP} \
$$i ${DESTDIR}${BOOTDIR}; \
done
@@ -29,4 +29,3 @@ cdk.sys: ${.CURDIR}/cdk.sys.uu
2681.sys: ${.CURDIR}/2681.sys.uu
@rm -f $@
uudecode ${.CURDIR}/$@.uu
-