diff options
author | midipix <writeonce@midipix.org> | 2019-01-01 04:25:12 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-01-01 04:42:19 -0500 |
commit | 1e226ce16777e2e8906a2382ea8bc9a14411e472 (patch) | |
tree | 7e92beca4b70f5cd8b0e4788282a06e9518c9ed0 /sofort/ccenv | |
parent | d32645ad16d10c79989bef24f768211a7d91384f (diff) | |
download | ntapi-1e226ce16777e2e8906a2382ea8bc9a14411e472.tar.bz2 ntapi-1e226ce16777e2e8906a2382ea8bc9a14411e472.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 } |