Browse Source

improve libusb

ruki 4 năm trước cách đây
mục cha
commit
d548ec578c
1 tập tin đã thay đổi với 2 bổ sung5 xóa
  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