fix(packages/a/arrow): typo in ARROW_BUILD_SHARED (#1102)

* fix(packages/a/arrow): typo in ARROW_BUILD_SHARED

The current package contains a definition with a duplicated D.

Signed-off-by: Leonardo Di Donato <leodidonato@gmail.com>

* Update xmake.lua

Co-authored-by: ruki <waruqi@gmail.com>
pull/1104/head
Leo Di Donato 3 years ago committed by GitHub
parent 8767237de7
commit ea0519ed92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      packages/a/arrow/xmake.lua

@ -31,6 +31,12 @@ package("arrow")
add_deps("cmake", "boost")
if is_plat("bsd") then
add_syslinks("pthread", "execinfo")
elseif is_plat("linux") then
add_syslinks("pthread")
end
on_load(function (package)
for name, dep in pairs(configdeps) do
if package:config(name) then
@ -75,7 +81,7 @@ ${yellow}In case of boost dependency conflicts, please use following code (order
local shared = package:config("shared")
table.insert(configs, "-DARROW_BUILD_STATIC=" .. (shared and "OFF" or "ON"))
table.insert(configs, "-DDARROW_BUILD_SHARED=" .. (shared and "ON" or "OFF"))
table.insert(configs, "-DARROW_BUILD_SHARED=" .. (shared and "ON" or "OFF"))
table.insert(configs, "-DARROW_DEPENDENCY_USE_SHARED=" .. (shared and "ON" or "OFF"))
for config, enabled in pairs(package:configs()) do

Loading…
Cancel
Save