summaryrefslogtreecommitdiffstats
path: root/lib/libc
diff options
context:
space:
mode:
authorwill <will@FreeBSD.org>2015-01-16 21:39:08 +0000
committerwill <will@FreeBSD.org>2015-01-16 21:39:08 +0000
commitafad9375d853b7b34e4256d1c3421d937b565c57 (patch)
tree8a1af53c5feb7376262fc346729ffddd1a4b3c93 /lib/libc
parent96da0c1c63a35ba3aca3a9ef55e32fde9bdf7964 (diff)
downloadFreeBSD-src-afad9375d853b7b34e4256d1c3421d937b565c57.zip
FreeBSD-src-afad9375d853b7b34e4256d1c3421d937b565c57.tar.gz
Add a ${CP} alias for copying files in the build.
Some users build FreeBSD as non-root in Perforce workspaces. By default, Perforce sets files read-only unless they're explicitly being edited. As a result, the -f argument must be used to cp in order to override the read-only flag when copying source files to object directories. Bare use of 'cp' should be avoided in the future. Update all current users of 'cp' in the src tree. Reviewed by: emaste MFC after: 1 week Sponsored by: Spectra Logic
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/Makefile b/lib/libc/Makefile
index 906ace1..eed9070 100644
--- a/lib/libc/Makefile
+++ b/lib/libc/Makefile
@@ -149,11 +149,11 @@ KSRCS= bcmp.c ffs.c ffsl.c fls.c flsl.c mcount.c strcat.c strchr.c \
libkern: libkern.gen libkern.${LIBC_ARCH}
libkern.gen: ${KQSRCS} ${KSRCS}
- cp -fp ${LIBC_SRCTOP}/quad/quad.h ${.ALLSRC} ${DESTDIR}/sys/libkern
+ ${CP} ${LIBC_SRCTOP}/quad/quad.h ${.ALLSRC} ${DESTDIR}/sys/libkern
libkern.${LIBC_ARCH}:: ${KMSRCS}
.if defined(KMSRCS) && !empty(KMSRCS)
- cp -fp ${.ALLSRC} ${DESTDIR}/sys/libkern/${LIBC_ARCH}
+ ${CP} ${.ALLSRC} ${DESTDIR}/sys/libkern/${LIBC_ARCH}
.endif
.if ${MK_SYSCALL_COMPAT} != "no"
OpenPOWER on IntegriCloud