svn commit: r531919 - branches/2020Q2/comms/openzwave-devel

Piotr Kubaj pkubaj at FreeBSD.org
Fri Apr 17 10:50:39 UTC 2020


Author: pkubaj
Date: Fri Apr 17 10:50:39 2020
New Revision: 531919
URL: https://svnweb.freebsd.org/changeset/ports/531919

Log:
  MFH: r531918
  
  comms/openzwave-devel: fix build on GCC architectures
  
  Use C++11 compiler:
  cc1plus: error: unrecognized command line option "-std=c++11"
  
  Adding MAKE_ARGS+= CXX="${CXX}" is necessary because CXX is set up in Makefile.
  
  Approved by:	portmgr (fix build blanket)

Modified:
  branches/2020Q2/comms/openzwave-devel/Makefile
Directory Properties:
  branches/2020Q2/   (props changed)

Modified: branches/2020Q2/comms/openzwave-devel/Makefile
==============================================================================
--- branches/2020Q2/comms/openzwave-devel/Makefile	Fri Apr 17 10:47:15 2020	(r531918)
+++ branches/2020Q2/comms/openzwave-devel/Makefile	Fri Apr 17 10:50:39 2020	(r531919)
@@ -23,7 +23,7 @@ USE_GITHUB=	yes
 GH_ACCOUNT=	OpenZWave
 GH_PROJECT=	open-zwave
 GH_TAGNAME=	1e2d123c
-MAKE_ARGS=	VERSION_REV=${VERSION_REV} LIBDIR=${WRKSRC} docdir=${DOCSDIR}
+MAKE_ARGS=	VERSION_REV=${VERSION_REV} LIBDIR=${WRKSRC} docdir=${DOCSDIR} CXX=${CXX}
 
 OPTIONS_DEFINE=	DOCS DOXYGEN
 OPTIONS_SUB=	yes


More information about the svn-ports-branches mailing list