svn commit: r476411 - head/Mk

Gerald Pfeifer gerald at FreeBSD.org
Sun Aug 5 12:14:29 UTC 2018


Author: gerald
Date: Sun Aug  5 12:14:28 2018
New Revision: 476411
URL: https://svnweb.freebsd.org/changeset/ports/476411

Log:
  Add CXXFLAGS to the debugging output provided by test-gcc and put that,
  as well as the existing output for CFLAGS, on a line of its own to make
  this easier to parse.

Modified:
  head/Mk/bsd.gcc.mk

Modified: head/Mk/bsd.gcc.mk
==============================================================================
--- head/Mk/bsd.gcc.mk	Sun Aug  5 12:02:53 2018	(r476410)
+++ head/Mk/bsd.gcc.mk	Sun Aug  5 12:14:28 2018	(r476411)
@@ -197,7 +197,9 @@ test-gcc:
 .endfor
 	@echo Using GCC version ${_USE_GCC}
 .endif
-	@echo CC=${CC} - CXX=${CXX} - CPP=${CPP} - CFLAGS=\"${CFLAGS}\"
+	@echo CC=${CC} - CXX=${CXX} - CPP=${CPP}
+	@echo CFLAGS=\"${CFLAGS}\"
+	@echo CXXFLAGS=\"${CXXFLAGS}\"
 	@echo LDFLAGS=\"${LDFLAGS}\"
 	@echo "BUILD_DEPENDS=${BUILD_DEPENDS}"
 	@echo "RUN_DEPENDS=${RUN_DEPENDS}"


More information about the svn-ports-head mailing list