svn commit: r518699 - head/devel/dmlc-core

Piotr Kubaj pkubaj at FreeBSD.org
Sat Nov 30 02:56:08 UTC 2019


Author: pkubaj
Date: Sat Nov 30 02:56:08 2019
New Revision: 518699
URL: https://svnweb.freebsd.org/changeset/ports/518699

Log:
  devel/dmlc-core: remove ? from toolchain setup
  
  It turns out that having ? makes compiler.mk set base toolchain.

Modified:
  head/devel/dmlc-core/Makefile

Modified: head/devel/dmlc-core/Makefile
==============================================================================
--- head/devel/dmlc-core/Makefile	Sat Nov 30 02:42:10 2019	(r518698)
+++ head/devel/dmlc-core/Makefile	Sat Nov 30 02:56:08 2019	(r518699)
@@ -22,9 +22,9 @@ USE_LDCONFIG=	yes
 CMAKE_ON=	BUILD_SHARED_LIBS
 
 # use clang from ports because otherwise OpenMP isn't detected on some systems (ex. 12.0-RELEASE-p9)
-CPP?=		clang-cpp${LLVM_DEFAULT}
-CC?=		clang${LLVM_DEFAULT}
-CXX?=		clang++${LLVM_DEFAULT}
+CPP=		clang-cpp${LLVM_DEFAULT}
+CC=		clang${LLVM_DEFAULT}
+CXX=		clang++${LLVM_DEFAULT}
 
 .include <bsd.port.options.mk>
 


More information about the svn-ports-head mailing list