From 10d63a94a97ccfa8ed87bbb189685811693e2574 Mon Sep 17 00:00:00 2001 From: will Date: Thu, 12 Aug 2010 20:46:49 +0000 Subject: 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) --- secure/lib/libcrypto/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'secure/lib/libcrypto/Makefile') 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 -- cgit v1.1