summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2014-02-26 21:37:11 (EST)
committer P. J. McDermott <pjm@nac.net>2014-02-26 21:37:11 (EST)
commit780d42c7549512ba040638a3afaee07043a0459f (patch)
treecdc3250570ad7622955cfa00b97e7a5bd2882542 /lib
parent5f3abe64cc0fe9c50ff0caf97bb5c6c14b31cae7 (diff)
oh_buildsystem_arch(): Require second argument.
Diffstat (limited to 'lib')
-rw-r--r--lib/buildsystem.sh13
1 files changed, 7 insertions, 6 deletions
diff --git a/lib/buildsystem.sh b/lib/buildsystem.sh
index 8207bcc..ffdba86 100644
--- a/lib/buildsystem.sh
+++ b/lib/buildsystem.sh
@@ -140,17 +140,18 @@ oh_buildsystem_arch()
local bs_arch=
local system=
- if [ ${#} -eq 1 ]; then
+ if [ ${#} -eq 2 ]; then
arch="${1}"
+ system="${2}"
+ else
+ return 125
+ fi
+
+ if [ "x${system}" = 'x' ]; then
system="$(oh_buildsystem_find 'configure')"
if [ ${?} -ne 0 ]; then
return 1
fi
- elif [ ${#} -eq 2 ]; then
- arch="${1}"
- system="${2}"
- else
- return 125
fi
# Try to find a suitable build system host arch.