Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/external/lgpl3/gmp/lib/libgmp When copying an .OBJDIR file, ...



details:   https://anonhg.NetBSD.org/src/rev/ee2128f2d9e0
branches:  trunk
changeset: 325334:ee2128f2d9e0
user:      gdt <gdt%NetBSD.org@localhost>
date:      Thu Dec 19 01:07:03 2013 +0000

description:
When copying an .OBJDIR file, rm -f first.

Arguably there should be some general mechanism, but there isn't yet,
and I hit a build failure at

        cp ${.CURDIR}/arch/${GMP_MACHINE_ARCH}/config.m4 ${.OBJDIR}/config.m4

because my source tree is mode 444, and hence my previously-copied
config.m4 was too.

diffstat:

 external/lgpl3/gmp/lib/libgmp/Makefile |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 2021361aaddc -r ee2128f2d9e0 external/lgpl3/gmp/lib/libgmp/Makefile
--- a/external/lgpl3/gmp/lib/libgmp/Makefile    Wed Dec 18 22:39:16 2013 +0000
+++ b/external/lgpl3/gmp/lib/libgmp/Makefile    Thu Dec 19 01:07:03 2013 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.23 2013/12/04 00:57:21 mrg Exp $
+#      $NetBSD: Makefile,v 1.24 2013/12/19 01:07:03 gdt Exp $
 
 .include <bsd.init.mk>
 
@@ -212,7 +212,7 @@
 dummy:
        mkdir dummy
 ${.OBJDIR}/config.m4: ${.CURDIR}/arch/${GMP_MACHINE_ARCH}/config.m4
-       cp ${.CURDIR}/arch/${GMP_MACHINE_ARCH}/config.m4 ${.OBJDIR}/config.m4
+       rm -f ${.OBJDIR}/config.m4 && cp ${.CURDIR}/arch/${GMP_MACHINE_ARCH}/config.m4 ${.OBJDIR}/config.m4
 
 CLEANFILES+=   config.m4
 clean: cleandummy



Home | Main Index | Thread Index | Old Index