Skip to content

Commit

Permalink
link re2 to libparquet and libarrow
Browse files Browse the repository at this point in the history
fixes #15413
  • Loading branch information
dvirtz committed Jan 23, 2023
1 parent 47e115a commit 09135e1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion recipes/arrow/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,8 @@ def package_info(self):
if self.options.with_mimalloc:
self.cpp_info.components["libarrow"].requires.append("mimalloc::mimalloc")
if self._with_re2():
self.cpp_info.components["libgandiva"].requires.append("re2::re2")
for comp in ["libgandiva", "libparquet", "libarrow"]:
self.cpp_info.components[comp].requires.append("re2::re2")
if self._with_llvm():
self.cpp_info.components["libgandiva"].requires.append("llvm-core::llvm-core")
if self._with_protobuf():
Expand Down

0 comments on commit 09135e1

Please sign in to comment.