diff options
author | midipix <writeonce@midipix.org> | 2019-01-01 04:25:12 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-01-01 04:42:20 -0500 |
commit | 55f528119862f856306f5ea9834601218eb48abd (patch) | |
tree | c7ee147e868089fbb99ec542381e27ac2a7e1bbf /sofort/ccenv | |
parent | f3bbeb80bfed4419ceac44a76d4c49bbdc3c6277 (diff) | |
download | pemagine-55f528119862f856306f5ea9834601218eb48abd.tar.bz2 pemagine-55f528119862f856306f5ea9834601218eb48abd.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 } |