summaryrefslogtreecommitdiff
path: root/xmake/modules/package/tools/autoconf.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2021-04-18 22:35:51 +0800
committerruki <[email protected]>2021-04-18 22:35:51 +0800
commit4bb2d8aa6465cc1040b55557329bebb55e75c0bc (patch)
treeed7077f1f83fa61be20c52a7daeee690d6159aac /xmake/modules/package/tools/autoconf.lua
parent0cbab6fb988de83385662cfe84428e96db7ab098 (diff)
fix autoreconf on msys
Diffstat (limited to 'xmake/modules/package/tools/autoconf.lua')
-rw-r--r--xmake/modules/package/tools/autoconf.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/modules/package/tools/autoconf.lua b/xmake/modules/package/tools/autoconf.lua
index c40fbafda..768ee20db 100644
--- a/xmake/modules/package/tools/autoconf.lua
+++ b/xmake/modules/package/tools/autoconf.lua
@@ -266,7 +266,7 @@ function configure(package, configs, opt)
if os.isfile("autogen.sh") then
os.vrunv("sh", {"./autogen.sh"}, {envs = autogen_envs(package, opt)})
elseif os.isfile("configure.ac") then
- os.vrunv("autoreconf", {"--install", "--symlink"}, {envs = autogen_envs(package, opt)})
+ os.vrunv("sh", {"autoreconf", "--install", "--symlink"}, {envs = autogen_envs(package, opt)})
end
end