Browse Source

improve libusb

ruki 4 years ago
parent
commit
d548ec578c
1 changed files with 2 additions and 5 deletions
  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