Module Name:    src
Committed By:   tsutsui
Date:           Sat Feb 15 13:34:28 UTC 2014

Modified Files:
        src/tools/binutils: Makefile

Log Message:
No need to specify ${.OBJDIR} for target files.

It rather fails if MKHOSTOBJ=yes.


To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 src/tools/binutils/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/tools/binutils/Makefile
diff -u src/tools/binutils/Makefile:1.23 src/tools/binutils/Makefile:1.24
--- src/tools/binutils/Makefile:1.23	Wed Jan 29 23:35:13 2014
+++ src/tools/binutils/Makefile	Sat Feb 15 13:34:28 2014
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.23 2014/01/29 23:35:13 joerg Exp $
+#	$NetBSD: Makefile,v 1.24 2014/02/15 13:34:28 tsutsui Exp $
 
 .include <bsd.own.mk>
 
@@ -16,12 +16,12 @@ CONFIGURE_ARGS=	--target=${MACHINE_GNU_P
 		--disable-werror \
 		${BRANDING}
 
-${.OBJDIR}/build/gas/m68k-parse.c: ${GNUHOSTDIST}/gas/m68k-parse.c
+build/gas/m68k-parse.c: ${GNUHOSTDIST}/gas/m68k-parse.c
 	@mkdir build 2>/dev/null || true
 	@mkdir build/gas 2>/dev/null || true
 	cat ${GNUHOSTDIST}/gas/m68k-parse.c > ${.TARGET}
 
-.configure_done: ${.OBJDIR}/build/gas/m68k-parse.c
+.configure_done: build/gas/m68k-parse.c
 
 MAKE_ARGS=	MACHINE= MAKEINFO=${TOOL_MAKEINFO:Q}
 

Reply via email to