summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorru <ru@FreeBSD.org>2002-07-18 12:02:20 +0000
committerru <ru@FreeBSD.org>2002-07-18 12:02:20 +0000
commit700fcd80fce2f08200f5778781eb49372f0dbb64 (patch)
treebaa4a7a25e28f4a78f24b93712f217ba723486c7
parentc2a5e5046751ff18438147280f92b372d5eac5c6 (diff)
downloadFreeBSD-src-700fcd80fce2f08200f5778781eb49372f0dbb64.zip
FreeBSD-src-700fcd80fce2f08200f5778781eb49372f0dbb64.tar.gz
s/install -c/${INSTALL} ${COPY}/
-rw-r--r--sys/conf/kern.post.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/conf/kern.post.mk b/sys/conf/kern.post.mk
index f840d15..2c52b4d 100644
--- a/sys/conf/kern.post.mk
+++ b/sys/conf/kern.post.mk
@@ -157,17 +157,17 @@ kernel-install:
.endif
mkdir -p ${DESTDIR}${KODIR}
.if defined(DEBUG) && defined(INSTALL_DEBUG)
- install -c -m 555 -o root -g wheel ${FULLKERNEL} ${DESTDIR}${KODIR}
+ ${INSTALL} ${COPY} -m 555 -o root -g wheel ${FULLKERNEL} ${DESTDIR}${KODIR}
.else
- install -c -m 555 -o root -g wheel ${KERNEL_KO} ${DESTDIR}${KODIR}
+ ${INSTALL} ${COPY} -m 555 -o root -g wheel ${KERNEL_KO} ${DESTDIR}${KODIR}
.endif
kernel-reinstall:
@-chflags -R noschg ${DESTDIR}${KODIR}
.if defined(DEBUG) && defined(INSTALL_DEBUG)
- install -c -m 555 -o root -g wheel ${FULLKERNEL} ${DESTDIR}${KODIR}
+ ${INSTALL} ${COPY} -m 555 -o root -g wheel ${FULLKERNEL} ${DESTDIR}${KODIR}
.else
- install -c -m 555 -o root -g wheel ${KERNEL_KO} ${DESTDIR}${KODIR}
+ ${INSTALL} ${COPY} -m 555 -o root -g wheel ${KERNEL_KO} ${DESTDIR}${KODIR}
.endif
.if !defined(MODULES_WITH_WORLD) && !defined(NO_MODULES) && exists($S/modules)
OpenPOWER on IntegriCloud