diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2020-06-22 12:29:43 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2020-06-22 12:29:43 (EDT) |
commit | 707f65e601a93e4dc6c6b1452efc04d141f3cad2 (patch) | |
tree | f9c81d01fd577f4443c5698889df2fa491a7158b /src/cmd | |
parent | d48622850406bd206e75b6d43f6a6b0137dbf3fb (diff) |
cmd/build: Pass -a option to opkg
Diffstat (limited to 'src/cmd')
-rw-r--r-- | src/cmd/build.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/cmd/build.sh b/src/cmd/build.sh index 87020ad..48503b7 100644 --- a/src/cmd/build.sh +++ b/src/cmd/build.sh @@ -144,7 +144,12 @@ cmd_build_main() cmd_build_build_deps="$(package_get_build_deps "${arch}" "${plat}")" if [ "x${cmd_build_build_deps}" != 'x' ]; then _cmd_build_make_deps_pkg - session_exec opkg install ../builddeps.opk + if session_exec opkg -a "${arch}" print-architecture \ + 1>/dev/null 2>&1; then + session_exec opkg -a "${arch}" install ../builddeps.opk + else + session_exec opkg install ../builddeps.opk + fi fi session_exec opkbuild "${@}" |