From 367736817b5bfdf3f6d237c780f71ec85a7595f3 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Fri, 09 Nov 2012 12:51:07 -0500 Subject: Fix quotes in GNU system types. --- (limited to 'lib') 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 -- cgit v0.9.1