diff options
author | midipix <writeonce@midipix.org> | 2019-01-01 04:25:12 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-01-01 04:42:21 -0500 |
commit | 2d55eabec2e0234567c3553f90e0c3aa84df948f (patch) | |
tree | 4a445d881bc0cbf275930ff096b5d8a49aa198ce /sofort | |
parent | e99ae9a695be90e9e6f017465f058d35daf7d9b2 (diff) | |
download | ptycon-2d55eabec2e0234567c3553f90e0c3aa84df948f.tar.bz2 ptycon-2d55eabec2e0234567c3553f90e0c3aa84df948f.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 } |