diff options
author | midipix <writeonce@midipix.org> | 2021-06-08 15:12:32 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-08 15:31:13 +0000 |
commit | 4cc73ac5f1d48cb27cde080e89e5f9d268d6f9eb (patch) | |
tree | abd52ede133e6d5f34074452a69462e194e54124 | |
parent | a27007715db54dd4f14e0db14c36229ef0d8a767 (diff) | |
download | sltdl-4cc73ac5f1d48cb27cde080e89e5f9d268d6f9eb.tar.bz2 sltdl-4cc73ac5f1d48cb27cde080e89e5f9d268d6f9eb.tar.xz |
build system: ccenv: support --cchost with strict compiler drivers.
-rw-r--r-- | sofort/ccenv/ccenv.sh | 5 |
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 |