Kaydet (Commit) cd2644df authored tarafından Tor Lillqvist's avatar Tor Lillqvist Kaydeden (comit) Tor Lillqvist

Don't source config_host.mk as such but put quotes around the variable values

Otherwise lines like:

export CLASSPATH=C:/PROGRA~2/Java/JDK16~2.0_2/jre/lib/rt.jar;.

will cause problems on Windows.
üst 2e1faa12
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment