Skip to content

Commit

Permalink
Update xmake.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
SirLynix authored Mar 25, 2024
1 parent 63ef9f1 commit 5234a8a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/b/bzip2/xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ package("bzip2")
envs = mingw:runenvs()
end
end
os.vrun("bunzip2 --help", {envs = envs})
os.vrun("bzcat --help", {envs = envs})
os.vrun("bzip2 --help", {envs = envs})
os.vrunv("bunzip2", {"--help"}, {envs = envs})
os.vrunv("bzcat", {"--help"}, {envs = envs})
os.vrunv("bzip2", {"--help"}, {envs = envs})
end

assert(package:has_cfuncs("BZ2_bzCompressInit", {includes = "bzlib.h"}))
Expand Down

0 comments on commit 5234a8a

Please sign in to comment.