diff options
author | midipix <writeonce@midipix.org> | 2019-01-01 04:25:12 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-01-01 04:42:17 -0500 |
commit | 9cbac2fda17080ad26a5ebcffd13e74e0a8ba8f6 (patch) | |
tree | 9429eabece166beb411a08cc956148b8538a9d35 /sofort/ccenv | |
parent | 89a44cadf2143972c6deb8ed89aa1834b712f94f (diff) | |
download | bfirm-9cbac2fda17080ad26a5ebcffd13e74e0a8ba8f6.tar.bz2 bfirm-9cbac2fda17080ad26a5ebcffd13e74e0a8ba8f6.tar.xz |
build system: ccenv: projects can now disable the population of native.mk.
Diffstat (limited to 'sofort/ccenv')
-rw-r--r-- | sofort/ccenv/ccenv.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh index a608675..6d8f13e 100644 --- a/sofort/ccenv/ccenv.sh +++ b/sofort/ccenv/ccenv.sh @@ -1061,5 +1061,7 @@ ccenv_set_host_variables() ccenv_set_native_variables() { - ccenv_set_toolchain_variables 'native' + if [ _$mb_ccenv_skip_native != _yes ]; then + ccenv_set_toolchain_variables 'native' + fi } |