Module Name:    src
Committed By:   christos
Date:           Wed Nov 29 21:22:36 UTC 2017

Modified Files:
        src/external/gpl3/gdb/bin/gdb: Makefile
        src/external/gpl3/gdb/bin/gdbtui: Makefile

Log Message:
make depend does not like multi-word compiler.


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/external/gpl3/gdb/bin/gdb/Makefile
cvs rdiff -u -r1.8 -r1.9 src/external/gpl3/gdb/bin/gdbtui/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/gdb/bin/gdb/Makefile
diff -u src/external/gpl3/gdb/bin/gdb/Makefile:1.11 src/external/gpl3/gdb/bin/gdb/Makefile:1.12
--- src/external/gpl3/gdb/bin/gdb/Makefile:1.11	Tue Nov 28 17:04:52 2017
+++ src/external/gpl3/gdb/bin/gdb/Makefile	Wed Nov 29 16:22:36 2017
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.11 2017/11/28 22:04:52 christos Exp $
+#	$NetBSD: Makefile,v 1.12 2017/11/29 21:22:36 christos Exp $
 
 NOCTF=
 .include <bsd.own.mk>
@@ -89,9 +89,9 @@ DPADD+=		${LIBEXPAT} ${LIBLZMA} ${LIBZ} 
 .include <bsd.prog.mk>
 
 # Force c++
-HOST_CC:=       ${HOST_CXX} -std=gnu++11 -Wno-error=stack-protector
-CC:=            ${CXX} -std=gnu++11 -Wno-error=stack-protector
-CFLAGS:=        ${CXXFLAGS}
+HOST_CC:=       ${HOST_CXX}
+CC:=            ${CXX}
+CFLAGS:=        ${CXXFLAGS} -std=gnu++11 -Wno-error=stack-protector
 
 
 .PATH: ${DIST}/gdb ${DIST}/gdb/mi ${DIST}/gdb/cli ${DIST}/gdb/tui \

Index: src/external/gpl3/gdb/bin/gdbtui/Makefile
diff -u src/external/gpl3/gdb/bin/gdbtui/Makefile:1.8 src/external/gpl3/gdb/bin/gdbtui/Makefile:1.9
--- src/external/gpl3/gdb/bin/gdbtui/Makefile:1.8	Tue Nov 28 22:58:17 2017
+++ src/external/gpl3/gdb/bin/gdbtui/Makefile	Wed Nov 29 16:22:36 2017
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.8 2017/11/29 03:58:17 christos Exp $
+#	$NetBSD: Makefile,v 1.9 2017/11/29 21:22:36 christos Exp $
 NOCTF=
 .include "../Makefile.inc"
 
@@ -26,9 +26,9 @@ NOMAN=		# defined
 .include <bsd.prog.mk>
 
 # Force c++
-HOST_CC:=       ${HOST_CXX} -std=gnu++11 -Wno-error=stack-protector
-CC:=            ${CXX} -std=gnu++11 -Wno-error=stack-protector
-CFLAGS:=        ${CXXFLAGS}
+HOST_CC:=       ${HOST_CXX}
+CC:=            ${CXX}
+CFLAGS:=        ${CXXFLAGS} -std=gnu++11 -Wno-error=stack-protector
 
 LIBOPCODESDIR!=   cd ${.CURDIR}/../../lib/libopcodes   && ${PRINTOBJDIR}
 LIBBFDDIR!=       cd ${.CURDIR}/../../lib/libbfd       && ${PRINTOBJDIR}

Reply via email to