diff options
author | midipix <writeonce@midipix.org> | 2019-01-01 04:25:12 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-01-01 04:42:23 -0500 |
commit | 8a95062d32ea29ddd98203c31a09dd595036498d (patch) | |
tree | 6867f59108e9928c9803381289df330e6468574e /sofort | |
parent | 0dcb3b862c276d782671f9a36a60d6d3d286539d (diff) | |
download | u16ports-8a95062d32ea29ddd98203c31a09dd595036498d.tar.bz2 u16ports-8a95062d32ea29ddd98203c31a09dd595036498d.tar.xz |
build system: ccenv: projects can now disable the population of native.mk.
Diffstat (limited to 'sofort')
-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 } |