summaryrefslogtreecommitdiff
path: root/sofort/ccenv
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:17 -0500
commitfcafaa22fd9b545d806c3560b3de0eb7ff65d0d9 (patch)
treef6f57a63e9b1c71c4a9df9c3f457328af8495197 /sofort/ccenv
parentbc5365fa7872141c0859d51baf9475e9182695eb (diff)
downloadbcparser-fcafaa22fd9b545d806c3560b3de0eb7ff65d0d9.tar.bz2
bcparser-fcafaa22fd9b545d806c3560b3de0eb7ff65d0d9.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.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
}