Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
robomics committed Oct 3, 2024
1 parent 0059278 commit 90ef254
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions recipes/arrow/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,18 +231,18 @@ def validate(self):
# From https://github.com/conan-io/conan-center-index/pull/23163#issuecomment-2039808851
if self.options.gandiva:
if not self.options.with_re2:
raise ConanException("'with_re2' option should be True when'gandiva=True'")
raise ConanException("'with_re2' option should be True when 'gandiva=True'")
if not self.options.with_boost:
raise ConanException("'with_boost' option should be True when'gandiva=True'")
raise ConanException("'with_boost' option should be True when 'gandiva=True'")
if not self.options.with_utf8proc:
raise ConanException("'with_utf8proc' option should be True when'gandiva=True'")
raise ConanException("'with_utf8proc' option should be True when 'gandiva=True'")
if self.options.with_thrift and not self.options.with_boost:
raise ConanException("'with_boost' option should be True when'thrift=True'")
raise ConanException("'with_boost' option should be True when 'thrift=True'")
if self.options.parquet:
if not self.options.with_thrift:
raise ConanException("'with_thrift' option should be True when'parquet=True'")
raise ConanException("'with_thrift' option should be True when 'parquet=True'")
if self.options.with_flight_rpc and not self.options.with_protobuf:
raise ConanException("'with_protobuf' option should be True when'with_flight_rpc=True'")
raise ConanException("'with_protobuf' option should be True when 'with_flight_rpc=True'")

if self.settings.compiler.get_safe("cppstd"):
check_min_cppstd(self, self._min_cppstd)
Expand Down

0 comments on commit 90ef254

Please sign in to comment.