diff options
author | will <will@FreeBSD.org> | 2010-08-12 20:46:49 +0000 |
---|---|---|
committer | will <will@FreeBSD.org> | 2010-08-12 20:46:49 +0000 |
commit | 10d63a94a97ccfa8ed87bbb189685811693e2574 (patch) | |
tree | 2a23665239368ffe96f2c097e25938dd3bf66f4a /secure | |
parent | 66fa23844575c915ddd0cfe9b7f20cba0f0c97a6 (diff) | |
download | FreeBSD-src-10d63a94a97ccfa8ed87bbb189685811693e2574.zip FreeBSD-src-10d63a94a97ccfa8ed87bbb189685811693e2574.tar.gz |
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)
Diffstat (limited to 'secure')
-rw-r--r-- | secure/lib/libcrypto/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/secure/lib/libcrypto/Makefile b/secure/lib/libcrypto/Makefile index 8a08589..212427f 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 |