diff options
author | midipix <writeonce@midipix.org> | 2021-05-22 10:18:52 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-05-22 10:20:16 +0000 |
commit | e4b2eabdb3f6be4c86d3d3fd721b6125ea8ec8a3 (patch) | |
tree | ba54d6c17555912cb58c349bd83a6a03a0e80c3b /sofort/ccenv/ccenv.sh | |
parent | 842034336a1d6a56175b98d5fa47ea5d9552654d (diff) | |
download | tpax-e4b2eabdb3f6be4c86d3d3fd721b6125ea8ec8a3.tar.bz2 tpax-e4b2eabdb3f6be4c86d3d3fd721b6125ea8ec8a3.tar.xz |
build system: ccenv: ccenv_set_cc(): handle quotes in native $ccenv_cflags.
Diffstat (limited to 'sofort/ccenv/ccenv.sh')
-rw-r--r-- | sofort/ccenv/ccenv.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh index 62caa96..efe19d7 100644 --- a/sofort/ccenv/ccenv.sh +++ b/sofort/ccenv/ccenv.sh @@ -478,7 +478,7 @@ ccenv_set_cc() fi if [ -z "$ccenv_host" ]; then - ccenv_host=$($ccenv_cc $(printf '%s' "$ccenv_cflags") -dumpmachine 2>&3) + ccenv_host=$(eval $ccenv_cc $(printf '%s' "$ccenv_cflags") -dumpmachine 2>&3) ccenv_cchost=$ccenv_host else ccenv_tmp=$(mktemp ./tmp_XXXXXXXXXXXXXXXX) @@ -501,7 +501,7 @@ ccenv_set_cc() rm -f "$ccenv_tmp" unset ccenv_tmp - ccenv_cchost=$($ccenv_cc $(printf '%s' "$ccenv_cflags") -dumpmachine 2>&3) + ccenv_cchost=$(eval $ccenv_cc $(printf '%s' "$ccenv_cflags") -dumpmachine 2>&3) fi if [ "$ccenv_cchost" != "$ccenv_host" ]; then |