svn commit: r379902 - head/multimedia/opencinematools
John Marino
marino at FreeBSD.org
Wed Feb 25 11:46:24 UTC 2015
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
More information about the svn-ports-head
mailing list