summaryrefslogtreecommitdiff
path: root/sofort
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2021-06-08 15:12:32 +0000
committermidipix <writeonce@midipix.org>2021-06-08 15:31:14 +0000
commit004c583d4bdde05442e7d4a708c3b481ce7918ca (patch)
treeec942ccf3156f90021e1f70fdc3997ec3f3ce328 /sofort
parent41f2cbfc5dc04f6f3ad293676a70c77589a24ad1 (diff)
downloadtpax-004c583d4bdde05442e7d4a708c3b481ce7918ca.tar.bz2
tpax-004c583d4bdde05442e7d4a708c3b481ce7918ca.tar.xz
build system: ccenv: support --cchost with strict compiler drivers.
Diffstat (limited to 'sofort')
-rw-r--r--sofort/ccenv/ccenv.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh
index 47fc587..d0e808d 100644
--- a/sofort/ccenv/ccenv.sh
+++ b/sofort/ccenv/ccenv.sh
@@ -560,7 +560,10 @@ ccenv_set_cc()
$ccenv_dumpmachine_switch 2>&3)
fi
- if [ "$ccenv_cchost" != "$ccenv_host" ]; then
+ if [ -z "$ccenv_dumpmachine_switch" ] && [ -n "$ccenv_host" ]; then
+ ccenv_cchost="$ccenv_host"
+
+ elif [ "$ccenv_cchost" != "$ccenv_host" ]; then
printf 'error!\n' >&2
printf 'ccenv:\n' >&2
printf 'ccenv: ccenv_host: %s \n' $ccenv_host >&2