summaryrefslogtreecommitdiff
path: root/sofort/ccenv/ccenv.sh
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2019-01-01 04:25:12 -0500
committermidipix <writeonce@midipix.org>2019-01-01 04:42:16 -0500
commite35a1a9c69b48d09f0990d8e66b6c0baf289620e (patch)
treef65295b6f353e9ce52ba371d06d09105cd878936 /sofort/ccenv/ccenv.sh
parentefee242910a4bc32774ee69c18b4b3017fc3a0fa (diff)
downloadapimagic-e35a1a9c69b48d09f0990d8e66b6c0baf289620e.tar.bz2
apimagic-e35a1a9c69b48d09f0990d8e66b6c0baf289620e.tar.xz
build system: ccenv: projects can now disable the population of native.mk.
Diffstat (limited to 'sofort/ccenv/ccenv.sh')
-rw-r--r--sofort/ccenv/ccenv.sh4
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
}