Module Name: src
Committed By: skrll
Date: Mon Oct 21 08:59:29 UTC 2013
Modified Files:
src/tools/gcc: Makefile
Log Message:
Move the GNUHOSTDIST assignment back to the top of the Makefile.
To generate a diff of this commit:
cvs rdiff -u -r1.59 -r1.60 src/tools/gcc/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/gcc/Makefile
diff -u src/tools/gcc/Makefile:1.59 src/tools/gcc/Makefile:1.60
--- src/tools/gcc/Makefile:1.59 Sun Oct 20 17:12:23 2013
+++ src/tools/gcc/Makefile Mon Oct 21 08:59:29 2013
@@ -1,10 +1,14 @@
-# $NetBSD: Makefile,v 1.59 2013/10/20 17:12:23 skrll Exp $
+# $NetBSD: Makefile,v 1.60 2013/10/21 08:59:29 skrll Exp $
.include <bsd.own.mk>
GCC_LANGUAGES=c c++ objc
MODULE= gcc4
+.if ${HAVE_GCC} == 45
+GNUHOSTDIST= ${.CURDIR}/../../external/gpl3/gcc/dist
+.endif
+
.if ${MACHINE_ARCH} == "x86_64" || ${MACHINE_ARCH} == "sparc64"
MULTILIB_ARGS= --enable-multilib
.else
@@ -69,7 +73,6 @@ MKNATIVE_CONFIG_TARGET_LIBS= \
.if ${HAVE_GCC} == 45
MKNATIVE_TARGET= gcc45
-GNUHOSTDIST= ${.CURDIR}/../../external/gpl3/gcc/dist
MKNATIVE_CONFIG_TARGET_LIBS+= \
configure-target-libgomp
.else