diff options
Diffstat (limited to 'subr')
-rw-r--r-- | subr/pkg_configure_autotools.subr | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/subr/pkg_configure_autotools.subr b/subr/pkg_configure_autotools.subr index e6445002..219b1719 100644 --- a/subr/pkg_configure_autotools.subr +++ b/subr/pkg_configure_autotools.subr @@ -38,9 +38,11 @@ pkg_configure_autotools() { -exec install -m 0700 "${MIDIPIX_BUILD_PWD}/etc/config.sub" {} \;; if [ "${PKG_BUILD_TYPE}" != host ]; then if [ -n "${PKG_CONFIG_CACHE}" ]; then - echo "${PKG_CONFIG_CACHE}" > "${PKG_BUILD_DIR}/config.cache"; + echo "${PKG_CONFIG_CACHE}" |\ + tr " " "\n" >> "${PKG_BUILD_DIR}/config.cache"; if [ -n "${PKG_CONFIG_CACHE_EXTRA}" ]; then - echo "${PKG_CONFIG_CACHE_EXTRA}" >> "${PKG_BUILD_DIR}/config.cache"; + echo "${PKG_CONFIG_CACHE_EXTRA}" |\ + tr " " "\n" >> "${PKG_BUILD_DIR}/config.cache"; fi; fi; sed -i"" "s,%PREFIX%,${PKG_PREFIX},g" "${PKG_BUILD_DIR}/config.cache"; |