Browse Source

Fixup webui (#6750)

Saikari 5 months ago
parent
commit
2da263658e
1 changed files with 4 additions and 1 deletions
  1. 4 1
      packages/w/webui/xmake.lua

+ 4 - 1
packages/w/webui/xmake.lua

@@ -30,8 +30,11 @@ package("webui")
                 io.replace("src/civetweb/civetweb.c", "fseeko", "fseek", {plain = true})
             end
         end
+        local configs = {
+            log = package:config("log"),
+        }
         os.cp(path.join(package:scriptdir(), "port", "xmake.lua"), "xmake.lua")
-        import("package.tools.xmake").install(package)
+        import("package.tools.xmake").install(package, configs)
     end)
 
     on_test(function (package)