Date: Fri, 28 Jul 2017 16:29:08 +0000 (UTC) From: =?UTF-8?Q?Jean-S=c3=a9bastien_P=c3=a9dron?= <dumbbell@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r446837 - head/lang/rust Message-ID: <201707281629.v6SGT8LP056191@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@gwdg.de> Reported by: Rainer Hurling <rhurlin@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}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201707281629.v6SGT8LP056191>