Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 25 Feb 2015 11:46:24 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r379902 - head/multimedia/opencinematools
Message-ID:  <201502251146.t1PBkOrJ058147@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marino
Date: Wed Feb 25 11:46:23 2015
New Revision: 379902
URL: https://svnweb.freebsd.org/changeset/ports/379902
QAT: https://qat.redports.org/buildarchive/r379902/

Log:
  multimedia/opencinematools: Use CXXFLAGS with CXX
  
  CFLAGS are a subset of CXXFLAGS.  Since the compiler has been overridden
  to c++, the flags also need overriding to use c++ flags.
  
  Approved by:	just fix it

Modified:
  head/multimedia/opencinematools/Makefile

Modified: head/multimedia/opencinematools/Makefile
==============================================================================
--- head/multimedia/opencinematools/Makefile	Wed Feb 25 11:36:31 2015	(r379901)
+++ head/multimedia/opencinematools/Makefile	Wed Feb 25 11:46:23 2015	(r379902)
@@ -22,7 +22,7 @@ BUILD_WRKSRC=	${WRKSRC}/build/unix
 CFLAGS+=	-I${LOCALBASE}/include
 LDFLAGS+=	-L${LOCALBASE}/lib
 
-MAKE_ARGS=	CC="${CXX}" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
+MAKE_ARGS=	CC="${CXX}" CFLAGS="${CXXFLAGS}" LDFLAGS="${LDFLAGS}"
 
 PLIST_FILES=	bin/mkcpl bin/mkpkl bin/mkmap
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201502251146.t1PBkOrJ058147>