From 94d553b2fbff217861f150ba0583ea1dca35b30e Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Mon, 5 Mar 2012 20:38:29 +0200 Subject: Must properly quote also the vars in config_build.mk when sourcing it --- bootstrap | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bootstrap b/bootstrap index 313c2a94e1d1..3d1bc88a49b6 100755 --- a/bootstrap +++ b/bootstrap @@ -2,10 +2,12 @@ if test -z "${SRC_ROOT}"; then if test -f ./config_build.mk ; then - . ./config_build.mk + sed -e 's/^\(export [A-Z0-9_]*=\)\(.*\)$/\1"\2"/' config_build.mk.sh + . ./config_build.mk.sh + rm config_build.mk.sh else if test -f ./config_host.mk ; then - sed -e 's/^\(export .*=\)\(.*\)$/\1"\2"/' config_host.mk.sh + sed -e 's/^\(export [A-Z0-9_]*=\)\(.*\)$/\1"\2"/' config_host.mk.sh . ./config_host.mk.sh rm config_host.mk.sh fi -- cgit