summaryrefslogtreecommitdiffhomepage
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:20 -0500
commit55f528119862f856306f5ea9834601218eb48abd (patch)
treec7ee147e868089fbb99ec542381e27ac2a7e1bbf /sofort/ccenv/ccenv.sh
parentf3bbeb80bfed4419ceac44a76d4c49bbdc3c6277 (diff)
downloadpemagine-55f528119862f856306f5ea9834601218eb48abd.tar.bz2
pemagine-55f528119862f856306f5ea9834601218eb48abd.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
}