Skip to content

Commit

Permalink
Update xmake.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
waruqi authored Aug 14, 2023
1 parent 219eb5f commit 958437d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions packages/h/harfbuzz/xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,15 @@ package("harfbuzz")
end
import("lib.detect.find_tool")
import("lib.detect.find_program")

local pkgconf0 = find_tool("pkgconf")
print("pkgconf0", pkgconf0)

local pkgconf1 = find_tool("pkgconf", {force = true})
print("pkgconf1", pkgconf)
print("pkgconf1", pkgconf1)

local pkgconf2 = find_program("pkgconf", {force = true})
print("pkgconf2", pkgconf)
print("pkgconf2", pkgconf2)

os.execv("pkgconf --version")
print(envs)
Expand Down

0 comments on commit 958437d

Please sign in to comment.