aboutsummaryrefslogtreecommitdiff
path: root/secure
diff options
context:
space:
mode:
authorWill Andrews <will@FreeBSD.org>2010-08-12 20:46:49 +0000
committerWill Andrews <will@FreeBSD.org>2010-08-12 20:46:49 +0000
commit4be3feb21253e7f5c2fa9ec71a3fbcf026065107 (patch)
tree2a23665239368ffe96f2c097e25938dd3bf66f4a /secure
parent5b2bae575b849feaf24ec5fed8ee7d8272c4bd78 (diff)
downloadsrc-4be3feb21253e7f5c2fa9ec71a3fbcf026065107.tar.gz
src-4be3feb21253e7f5c2fa9ec71a3fbcf026065107.zip
Fix buildworld -DNO_CLEAN when using with Perforce, which marks files as
read-only by default, meaning files copied can't be overwritten next time. Reviewed by: imp Approved by: ken (mentor)
Notes
Notes: svn path=/head/; revision=211243
Diffstat (limited to 'secure')
-rw-r--r--secure/lib/libcrypto/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/secure/lib/libcrypto/Makefile b/secure/lib/libcrypto/Makefile
index 8a085891b7be..212427fb9fe9 100644
--- a/secure/lib/libcrypto/Makefile
+++ b/secure/lib/libcrypto/Makefile
@@ -355,13 +355,13 @@ buildinf.h: ${.CURDIR}/Makefile
echo "#endif" ) > ${.TARGET}
opensslconf.h: opensslconf-${MACHINE_ARCH}.h
- cp ${.ALLSRC} ${.TARGET}
+ cp -f ${.ALLSRC} ${.TARGET}
evp.h: ${LCRYPTO_SRC}/crypto/evp/evp.h
.if ${MK_IDEA} == "no"
sed '/^#ifndef OPENSSL_NO_IDEA$$/,/^#endif$$/d' ${.ALLSRC} > ${.TARGET}
.else
- cp ${.ALLSRC} ${.TARGET}
+ cp -f ${.ALLSRC} ${.TARGET}
.endif
# No FIPS support for now