summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbootstrap4
1 files changed, 3 insertions, 1 deletions
diff --git a/bootstrap b/bootstrap
index 94d07aaeba35..313c2a94e1d1 100755
--- a/bootstrap
+++ b/bootstrap
@@ -5,7 +5,9 @@ if test -z "${SRC_ROOT}"; then
. ./config_build.mk
else
if test -f ./config_host.mk ; then
- . ./config_host.mk
+ sed -e 's/^\(export .*=\)\(.*\)$/\1"\2"/' <config_host.mk >config_host.mk.sh
+ . ./config_host.mk.sh
+ rm config_host.mk.sh
fi
fi
fi