summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2020-01-04 14:25:15 +0000
committermidipix <writeonce@midipix.org>2020-01-04 14:27:43 +0000
commitbe3a8dd337a20c73fcf6feb7b37902c199dd8bde (patch)
tree204b64472ec2a36422235f42ef0dc6a3ff34f2d5
parenta71fcc0171f3defb75493d1a924c5cdc75190ce2 (diff)
downloadslibtool-be3a8dd337a20c73fcf6feb7b37902c199dd8bde.tar.bz2
slibtool-be3a8dd337a20c73fcf6feb7b37902c199dd8bde.tar.xz
build system: ccenv_{set_cc|dso_verify}(): support deferred command expansion.
-rw-r--r--sofort/ccenv/ccenv.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh
index ef7a957..7903b26 100644
--- a/sofort/ccenv/ccenv.sh
+++ b/sofort/ccenv/ccenv.sh
@@ -429,7 +429,7 @@ ccenv_set_cc()
ccenv_cmd="$ccenv_cc --target=$ccenv_host -E -xc -"
if [ -z "$mb_user_cc" ]; then
- $ccenv_cmd < /dev/null > /dev/null \
+ $(printf %s "$ccenv_cmd") < /dev/null > /dev/null \
2>"$ccenv_tmp" || true
ccenv_errors=$(cat "$ccenv_tmp")
@@ -1206,7 +1206,7 @@ ccenv_dso_verify()
rm -f a.out
- printf '%s' "$ccenv_str" | $ccenv_cmd \
+ printf '%s' "$ccenv_str" | $(printf %s "$ccenv_cmd") \
> /dev/null 2>&3 \
|| mb_disable_shared=yes