Skip to content

Commit

Permalink
arrow: fix the library name for the libacero component
Browse files Browse the repository at this point in the history
I think we got this part wrong in conan-io#17540
I'm not sure if this name stays (see apache/arrow#15280) but currently
the file being created is libarrow_acero.a

I'm not sure what to do with names of other components, such as pkg_config: for arrow_substrait
we prepend "arrow_" everywhere, for "arrow_flight_sql" we do not. I've chosen to make
the smallest possible diff that I am sure about.
  • Loading branch information
mpimenov committed May 29, 2023
1 parent 9ce37e9 commit 9d33329
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipes/arrow/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ def package_info(self):
del self.options.plasma

if self.options.acero:
self.cpp_info.components["libacero"].libs = [self._lib_name("acero")]
self.cpp_info.components["libacero"].libs = [self._lib_name("arrow_acero")]
self.cpp_info.components["libacero"].names["cmake_find_package"] = "acero"
self.cpp_info.components["libacero"].names["cmake_find_package_multi"] = "acero"
self.cpp_info.components["libacero"].names["pkg_config"] = "acero"
Expand Down

0 comments on commit 9d33329

Please sign in to comment.