summaryrefslogtreecommitdiff
path: root/xmake/modules
diff options
context:
space:
mode:
authorruki <[email protected]>2018-12-06 00:37:50 +0800
committerruki <[email protected]>2018-12-05 21:47:05 +0800
commit89e5de56f521e502db4311b99ed3f2fc5c196d1e (patch)
treec70629cafeef6a4476eb487c5eb2dc953118cc1b /xmake/modules
parentc1ee73d2858c02e66e2e8af3f18e6fff777758cf (diff)
improve to run autoconf
Diffstat (limited to 'xmake/modules')
-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 d78e6cc68..bfa6e2e1a 100644
--- a/xmake/modules/package/tools/autoconf.lua
+++ b/xmake/modules/package/tools/autoconf.lua
@@ -28,7 +28,7 @@ function install(package, configs)
-- generate configure file
if not os.isfile("configure") then
if os.isfile("autogen.sh") then
- os.vrun("./autogen.sh")
+ os.vrunv("sh", {"./autogen.sh"})
elseif os.isfile("configure.ac") then
os.vrun("autoreconf --install --symlink")
end