svn commit: r446837 - head/lang/rust
Jean-Sébastien Pédron
dumbbell at FreeBSD.org
Fri Jul 28 16:29:09 UTC 2017
Author: dumbbell
Date: Fri Jul 28 16:29:08 2017
New Revision: 446837
URL: https://svnweb.freebsd.org/changeset/ports/446837
Log:
lang/rust: Fix ${PORT_LLVM_BUILD_DEPENDS}
The BUILD_DEPENDS argument for the PORT_LLVM option was not updated: it
was using the ${LLVM_PREFIX} variable which was removed. Now, it uses
${LOCALBASE} and ${LLVM_VER} as a suffix to the executable verified.
Submitted by: Rainer Hurling <rhurlin at gwdg.de>
Reported by: Rainer Hurling <rhurlin at gwdg.de>
Modified:
head/lang/rust/Makefile
Modified: head/lang/rust/Makefile
==============================================================================
--- head/lang/rust/Makefile Fri Jul 28 15:23:34 2017 (r446836)
+++ head/lang/rust/Makefile Fri Jul 28 16:29:08 2017 (r446837)
@@ -80,7 +80,7 @@ LLNEXTGEN_BUILD_DEPENDS= LLnextgen:devel/llnextgen
# Rust may pass more regression tests with bundled LLVM
PORT_LLVM_DESC= Build against devel/llvm${LLVM_VER} instead of bundled version
-PORT_LLVM_BUILD_DEPENDS= ${LLVM_PREFIX}/bin/FileCheck:devel/llvm${LLVM_VER}
+PORT_LLVM_BUILD_DEPENDS= ${LOCALBASE}/bin/FileCheck${LLVM_VER}:devel/llvm${LLVM_VER}
LLVM_VER?= 40
LLVM_CONFIG= ${LOCALBASE}/bin/llvm-config${LLVM_VER}
More information about the svn-ports-head
mailing list