summaryrefslogtreecommitdiff
path: root/xmake/modules/package/tools/autoconf.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2020-10-27 22:39:22 +0800
committerruki <[email protected]>2020-10-27 22:39:22 +0800
commitb862233ea3ab3497197c7c48d93dbd5af7660f29 (patch)
treef927cc31711004c52fed6d137e0850d855adc2c4 /xmake/modules/package/tools/autoconf.lua
parenteeafece87f73eee741d28e9e9483f90d6f11488e (diff)
remove unknown platform check
Diffstat (limited to 'xmake/modules/package/tools/autoconf.lua')
-rw-r--r--xmake/modules/package/tools/autoconf.lua2
1 files changed, 0 insertions, 2 deletions
diff --git a/xmake/modules/package/tools/autoconf.lua b/xmake/modules/package/tools/autoconf.lua
index 36853ace1..8dc9f4b4c 100644
--- a/xmake/modules/package/tools/autoconf.lua
+++ b/xmake/modules/package/tools/autoconf.lua
@@ -82,8 +82,6 @@ function _get_configs(package, configs)
x86_64 = "x86_64-w64-mingw32"
}
table.insert(configs, "--host=" .. (triples[package:arch()] or triples.i386))
- else
- raise("autoconf: unknown platform(%s)!", package:plat())
end
end
return configs