Skip to content

Commit cf73e52

Browse files
cphurley82@gmail.comcphurley82@gmail.com
authored andcommitted
fix: remove WITH_SYSTEM_LLVM env check from conanfile.py
WITH_SYSTEM_LLVM is a CMake cached variable; Conan only needs to know whether to pull llvm-core, controlled by the WITH_LLVM env var alone.
1 parent 75d5582 commit cf73e52

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def requirements(self):
4545
self.requires("jsoncpp/1.9.6")
4646
self.requires("zlib/1.3.1")
4747
self.requires("asmjit/cci.20240531")
48-
if "WITH_LLVM" in os.environ and "WITH_SYSTEM_LLVM" not in os.environ:
48+
if "WITH_LLVM" in os.environ:
4949
self.requires("llvm-core/19.1.7")
5050
if os.path.isdir("dbt-rise-plugins"):
5151
self.requires("lua/5.4.3")

0 commit comments

Comments
 (0)