diff options
author | P. J. McDermott <pjm@nac.net> | 2012-11-09 12:51:07 (EST) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2012-11-09 12:51:07 (EST) |
commit | 367736817b5bfdf3f6d237c780f71ec85a7595f3 (patch) | |
tree | 13dd88e7e91c0bea6876ed54f69e76b78f2cb8a8 /lib/buildsystem | |
parent | a2da37288b682cfed1668bb989668894a8e60eab (diff) |
Fix quotes in GNU system types.
Diffstat (limited to 'lib/buildsystem')
-rw-r--r-- | lib/buildsystem/autoconf.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/buildsystem/autoconf.sh b/lib/buildsystem/autoconf.sh index b770c7f..c4a0b43 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}") " if [ "${OPK_BUILD_ARCH}" != "${OPK_HOST_ARCH}" ]; then _ohbsbac_arch_opts="${_ohbsbac_arch_opts} - --host='$(oh_buildsystem_arch \ - "${OPK_HOST_ARCH}")'" + --host=$(oh_buildsystem_arch \ + "${OPK_HOST_ARCH}")" fi if [ -n "${_OH_BUILDSYSTEM_TARGET_ARCH}" ]; then _ohbsbac_arch_opts="${_ohbsbac_arch_opts} - --target='$(oh_buildsystem_arch \ - "${_OH_BUILDSYSTEM_TARGET_ARCH}")'" + --target=$(oh_buildsystem_arch \ + "${_OH_BUILDSYSTEM_TARGET_ARCH}")" fi if [ '@@MULTIARCH_LIBDIR@@' = 'true' ]; then |