summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-05-26 17:22:16 (EDT)
committer P. J. McDermott <pjm@nac.net>2013-05-26 17:22:16 (EDT)
commit8eabd4f607e8509955fc2a4d825562456bf18f5e (patch)
treebbc3ebb7bd9fec66988b4c21bcf7778701503335
parente8533e6b128735f055d9487f21e1041f225103d9 (diff)
_oh_autoconf_configure(): Pass build sys arg.
-rw-r--r--lib/buildsystem/autoconf.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/buildsystem/autoconf.sh b/lib/buildsystem/autoconf.sh
index c4a0b43..cc727e7 100644
--- a/lib/buildsystem/autoconf.sh
+++ b/lib/buildsystem/autoconf.sh
@@ -33,17 +33,17 @@ _oh_autoconf_configure()
cd "${_OH_BUILDSYSTEM_BUILD_DIR}"
_ohbsbac_arch_opts="
- --build=$(oh_buildsystem_arch "${OPK_BUILD_ARCH}")
+ --build=$(oh_buildsystem_arch "${OPK_BUILD_ARCH}" 'autoconf')
"
if [ "${OPK_BUILD_ARCH}" != "${OPK_HOST_ARCH}" ]; then
_ohbsbac_arch_opts="${_ohbsbac_arch_opts}
--host=$(oh_buildsystem_arch \
- "${OPK_HOST_ARCH}")"
+ "${OPK_HOST_ARCH}" 'autoconf')"
fi
if [ -n "${_OH_BUILDSYSTEM_TARGET_ARCH}" ]; then
_ohbsbac_arch_opts="${_ohbsbac_arch_opts}
--target=$(oh_buildsystem_arch \
- "${_OH_BUILDSYSTEM_TARGET_ARCH}")"
+ "${_OH_BUILDSYSTEM_TARGET_ARCH}" 'autoconf')"
fi
if [ '@@MULTIARCH_LIBDIR@@' = 'true' ]; then