CVS commit: src/external/gpl3/gcc/usr.bin/host-libcpp

2020-06-23 Thread Rin Okuyama
Module Name:src
Committed By:   rin
Date:   Wed Jun 24 05:06:08 UTC 2020

Modified Files:
src/external/gpl3/gcc/usr.bin/host-libcpp: Makefile

Log Message:
PR bin/55411 (Akihiko HAYASHI)

Remove stray ``&&'' introduced in the previous revision, so that
host tools are correctly passed to configure script.

No similar problem for gcc.old. No release branches are affected.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/external/gpl3/gcc/usr.bin/host-libcpp/Makefile

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

Modified files:

Index: src/external/gpl3/gcc/usr.bin/host-libcpp/Makefile
diff -u src/external/gpl3/gcc/usr.bin/host-libcpp/Makefile:1.4 src/external/gpl3/gcc/usr.bin/host-libcpp/Makefile:1.5
--- src/external/gpl3/gcc/usr.bin/host-libcpp/Makefile:1.4	Thu Nov 14 09:27:08 2019
+++ src/external/gpl3/gcc/usr.bin/host-libcpp/Makefile	Wed Jun 24 05:06:08 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.4 2019/11/14 09:27:08 mrg Exp $
+#	$NetBSD: Makefile,v 1.5 2020/06/24 05:06:08 rin Exp $
 
 BUILD_ENV= \
 		AR=${HOST_AR:Q} \
@@ -24,7 +24,7 @@ BUILD_COMMAND=	/usr/bin/env -i ${BUILD_E
 
 libcpp/libcpp.a:
 	[ ! -d libcpp ] && mkdir libcpp || true
-	(cd libcpp && ${BUILD_ENV} && \
+	(cd libcpp && ${BUILD_ENV} \
 		${HOST_SH} ${DIST}/libcpp/configure -v am_cv_func_iconv=no \
 		&& ${BUILD_COMMAND})
 



CVS commit: src/external/gpl3/gcc/usr.bin/host-libcpp

2016-08-14 Thread Thor Lancelot Simon
Module Name:src
Committed By:   tls
Date:   Sun Aug 14 16:04:50 UTC 2016

Modified Files:
src/external/gpl3/gcc/usr.bin/host-libcpp: Makefile

Log Message:
Disable iconv in host-libcpp autoconf: fixes build on Mac OS X.
Thanks to joerg@ for the diagnosis and proposed fix.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/external/gpl3/gcc/usr.bin/host-libcpp/Makefile

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

Modified files:

Index: src/external/gpl3/gcc/usr.bin/host-libcpp/Makefile
diff -u src/external/gpl3/gcc/usr.bin/host-libcpp/Makefile:1.1 src/external/gpl3/gcc/usr.bin/host-libcpp/Makefile:1.2
--- src/external/gpl3/gcc/usr.bin/host-libcpp/Makefile:1.1	Tue Mar 15 19:14:47 2016
+++ src/external/gpl3/gcc/usr.bin/host-libcpp/Makefile	Sun Aug 14 16:04:50 2016
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.1 2016/03/15 19:14:47 mrg Exp $
+#	$NetBSD: Makefile,v 1.2 2016/08/14 16:04:50 tls Exp $
 
 libcpp/libcpp.a:
 	[ ! -d libcpp ] && mkdir libcpp || true
@@ -7,7 +7,7 @@ libcpp/libcpp.a:
 		CFLAGS=${HOST_CFLAGS:Q} \
 		MAKE=${TOOL_GMAKE:Q} \
 		CONFIG_SHELL=${HOST_SH:Q} \
-		${HOST_SH} ${DIST}/libcpp/configure \
+		${HOST_SH} ${DIST}/libcpp/configure -v am_cv_func_iconv=no \
 		&& CC=${HOST_CC:Q} CFLAGS=${HOST_CFLAGS:Q} ${TOOL_GMAKE})
 
 cleandir: