Skip to content

Commit 45a9c23

Browse files
committed
fix
1 parent 19f4cd6 commit 45a9c23

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/o/openblas/xmake.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ package("openblas")
3434

3535
if on_check then
3636
on_check("cross", "mingw@macosx", "iphoneos", "wasm", function (package)
37-
assert(package:config("target") ~= "auto", "When cross compiling, a target is required (e.g. add_requires(\"openblas\", {configs = {target = \"your_target\"}})).")
37+
assert(package:config("target") ~= "auto", "When cross compiling, a target is required, e.g., add_requires(\"openblas\", {configs = {target = \"your_target\"}}).")
3838
end)
3939
on_check("windows|arm64", function (package)
4040
assert(not package:is_cross(), "package(openblas) does not support cross-compiling for Windows ARM64 yet.")
@@ -85,7 +85,7 @@ package("openblas")
8585
table.insert(configs, "-DMSVC_STATIC_CRT=ON")
8686
end
8787

88-
import("package.tools.cmake").install(package, configs, opt)
88+
import("package.tools.cmake").install(package, configs)
8989
end)
9090

9191
on_test(function (package)

0 commit comments

Comments
 (0)