Skip to content

Commit 0d684bc

Browse files
committed
arrow: remove message about dependency conflicts.
This will break parsing xrepo fetch output.
1 parent 821449b commit 0d684bc

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

packages/a/arrow/xmake.lua

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ package("arrow")
1616
add_configs("parquet", {description = "Apache Parquet libraries and Arrow integration", default = false, type = "boolean"})
1717
add_configs("plasma", {description = "Plasma Shared Memory Object Store", default = false, type = "boolean"})
1818
-- After install with python enabled, the pyarrow package can be built by following command:
19-
-- cd <arrow-src>/arrow/python
19+
-- cd <arrow-src>/python
2020
-- export CMAKE_PREFIX_PATH=<xrepo arrow install dir>
2121
-- # export options that's enabled for the c++ install, e.g.
2222
-- export PYARROW_WITH_PARQUET=1
@@ -85,15 +85,6 @@ package("arrow")
8585
package:add("deps", "zstd")
8686
end
8787
if package:config("parquet") then
88-
cprint([[
89-
${yellow}In case of boost dependency conflicts, please use following code (order is important):
90-
91-
local boost_config = {configs = {system = true}} -- change this according to what your need
92-
add_requires("thrift")
93-
add_requireconfs("thrift.boost", boost_config)
94-
add_requires("arrow", {configs = {parquet = true}})
95-
add_requireconfs("arrow.boost", boost_config)
96-
]])
9788
package:add("deps", "thrift", configs)
9889
end
9990
end)

0 commit comments

Comments
 (0)