浏览代码

improve libusb

ruki 4 年之前
父节点
当前提交
d548ec578c
共有 1 个文件被更改,包括 2 次插入5 次删除
  1. 2 5
      packages/l/libusb/xmake.lua

+ 2 - 5
packages/l/libusb/xmake.lua

@@ -52,11 +52,8 @@ package("libusb")
 
     on_install("macosx", "linux", function (package)
         local configs = {}
-        if package:config("shared") then
-            table.insert(configs, "--enable-shared=yes")
-        else
-            table.insert(configs, "--enable-shared=no")
-        end
+        table.insert(configs, "--enable-shared=" .. (package:config("shared") and "yes" or "no"))
+        table.insert(configs, "--enable-static=" .. (package:config("shared") and "no" or "yes"))
         if package:config("pic") ~= false then
             table.insert(configs, "--with-pic")
         end