diff options
author | midipix <writeonce@midipix.org> | 2019-01-01 04:25:12 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-01-01 04:42:22 -0500 |
commit | 0966393cdf51142fd77e1833e5e582476f79179e (patch) | |
tree | 32c81fe6a51bc476cb0513cc64530168cdd783b6 | |
parent | 3e606ae59a9e9ae5c90f0117c639da21ff5f7927 (diff) | |
download | sbpython3-0966393cdf51142fd77e1833e5e582476f79179e.tar.bz2 sbpython3-0966393cdf51142fd77e1833e5e582476f79179e.tar.xz |
build system: ccenv: projects can now disable the population of native.mk.
-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 } |