Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ci/conan/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ def _with_thrift(self, required=False):

def _with_utf8proc(self, required=False):
if required or self.options.with_utf8proc == "auto":
return False
return bool(self._compute() or self.options.gandiva)
else:
return bool(self.options.with_utf8proc)

Expand Down Expand Up @@ -549,7 +549,7 @@ def package_info(self):
if self._with_protobuf():
self.cpp_info.components["libarrow"].requires.append("protobuf::protobuf")
if self._with_utf8proc():
self.cpp_info.components["libarrow"].requires.append("uff8proc::uff8proc")
self.cpp_info.components["libarrow"].requires.append("utf8proc::utf8proc")
if self._with_thrift():
self.cpp_info.components["libarrow"].requires.append("thrift::thrift")
if self.options.with_backtrace:
Expand Down