Skip to content

Commit

Permalink
ARROW-17250: [CI][Conan] Enable utf8proc automatically (#13744)
Browse files Browse the repository at this point in the history
Authored-by: Sutou Kouhei <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
  • Loading branch information
kou authored Aug 1, 2022
1 parent fdfe58a commit 42a9b32
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 42a9b32

Please sign in to comment.