From owner-svn-src-all@FreeBSD.ORG Thu Aug 12 20:46:49 2010 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C734B106564A; Thu, 12 Aug 2010 20:46:49 +0000 (UTC) (envelope-from will@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id AE7278FC1C; Thu, 12 Aug 2010 20:46:49 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o7CKknhO090516; Thu, 12 Aug 2010 20:46:49 GMT (envelope-from will@svn.freebsd.org) Received: (from will@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o7CKknNa090508; Thu, 12 Aug 2010 20:46:49 GMT (envelope-from will@svn.freebsd.org) Message-Id: <201008122046.o7CKknNa090508@svn.freebsd.org> From: Will Andrews Date: Thu, 12 Aug 2010 20:46:49 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r211243 - in head: gnu/lib/libreadline/history gnu/lib/libreadline/readline/doc gnu/usr.bin/cvs/contrib gnu/usr.bin/gdb/doc lib/libexpat secure/lib/libcrypto share/mk X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2010 20:46:49 -0000 Author: will Date: Thu Aug 12 20:46:49 2010 New Revision: 211243 URL: http://svn.freebsd.org/changeset/base/211243 Log: 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) Modified: head/gnu/lib/libreadline/history/Makefile head/gnu/lib/libreadline/readline/doc/Makefile head/gnu/usr.bin/cvs/contrib/Makefile head/gnu/usr.bin/gdb/doc/Makefile head/lib/libexpat/Makefile head/secure/lib/libcrypto/Makefile head/share/mk/sys.mk Modified: head/gnu/lib/libreadline/history/Makefile ============================================================================== --- head/gnu/lib/libreadline/history/Makefile Thu Aug 12 20:35:14 2010 (r211242) +++ head/gnu/lib/libreadline/history/Makefile Thu Aug 12 20:46:49 2010 (r211243) @@ -8,7 +8,7 @@ MAN= rlhistory.3 SRCS= $(HISTSRC) xmalloc.c rlhistory.3: doc/history.3 - cp ${.ALLSRC} ${.TARGET} + cp -f ${.ALLSRC} ${.TARGET} CLEANFILES+= rlhistory.3 Modified: head/gnu/lib/libreadline/readline/doc/Makefile ============================================================================== --- head/gnu/lib/libreadline/readline/doc/Makefile Thu Aug 12 20:35:14 2010 (r211242) +++ head/gnu/lib/libreadline/readline/doc/Makefile Thu Aug 12 20:46:49 2010 (r211243) @@ -13,7 +13,7 @@ CLEANFILES += readline.texi readline.info: rlman.texi rluser.texi rltech.texi version.texi fdl.texi readline.texi: rlman.texi - cp ${SRCDIR}/rlman.texi ${.TARGET} + cp -f ${SRCDIR}/rlman.texi ${.TARGET} rluserman.info: rluserman.texi version.texi rluser.texi fdl.texi Modified: head/gnu/usr.bin/cvs/contrib/Makefile ============================================================================== --- head/gnu/usr.bin/cvs/contrib/Makefile Thu Aug 12 20:35:14 2010 (r211242) +++ head/gnu/usr.bin/cvs/contrib/Makefile Thu Aug 12 20:46:49 2010 (r211243) @@ -24,7 +24,7 @@ Makefile: @: .sh: - cp ${.IMPSRC} ${.TARGET} + cp -f ${.IMPSRC} ${.TARGET} .pl: sed -e 's,xPERL_PATHx,$(PERLPATH),' ${.IMPSRC} > ${.TARGET} Modified: head/gnu/usr.bin/gdb/doc/Makefile ============================================================================== --- head/gnu/usr.bin/gdb/doc/Makefile Thu Aug 12 20:35:14 2010 (r211242) +++ head/gnu/usr.bin/gdb/doc/Makefile Thu Aug 12 20:46:49 2010 (r211243) @@ -20,11 +20,11 @@ GDBvn.texi: version.in echo "@set GDBVN `sed q ${.ALLSRC}`" > ${.TARGET} inc-hist.texinfo: hsuser.texi inc-hist.diff - cp ${.ALLSRC:M*.texi} ${.TARGET} + cp -f ${.ALLSRC:M*.texi} ${.TARGET} patch < ${.ALLSRC:M*.diff} rluser.texinfo: rluser.texi - cp ${.ALLSRC:M*.texi} ${.TARGET} + cp -f ${.ALLSRC:M*.texi} ${.TARGET} CLEANFILES= gdb-cfg.texi GDBvn.texi inc-hist.texinfo inc-hist.texinfo.orig \ rluser.texinfo Modified: head/lib/libexpat/Makefile ============================================================================== --- head/lib/libexpat/Makefile Thu Aug 12 20:35:14 2010 (r211242) +++ head/lib/libexpat/Makefile Thu Aug 12 20:46:49 2010 (r211243) @@ -30,6 +30,6 @@ bsdxml.h: expat.h > ${.TARGET} bsdxml_external.h: expat_external.h - cp ${.ALLSRC} ${.TARGET} + cp -f ${.ALLSRC} ${.TARGET} .include Modified: head/secure/lib/libcrypto/Makefile ============================================================================== --- head/secure/lib/libcrypto/Makefile Thu Aug 12 20:35:14 2010 (r211242) +++ head/secure/lib/libcrypto/Makefile Thu Aug 12 20:46:49 2010 (r211243) @@ -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 Modified: head/share/mk/sys.mk ============================================================================== --- head/share/mk/sys.mk Thu Aug 12 20:35:14 2010 (r211242) +++ head/share/mk/sys.mk Thu Aug 12 20:46:49 2010 (r211243) @@ -167,7 +167,7 @@ YFLAGS ?= -d ${CTFCONVERT} ${CTFFLAGS} ${.TARGET}) .sh: - cp ${.IMPSRC} ${.TARGET} + cp -f ${.IMPSRC} ${.TARGET} chmod a+x ${.TARGET} # DOUBLE SUFFIX RULES @@ -225,7 +225,7 @@ YFLAGS ?= -d # non-Posix rule set .sh: - cp -p ${.IMPSRC} ${.TARGET} + cp -fp ${.IMPSRC} ${.TARGET} chmod a+x ${.TARGET} .c.ln: