summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2018-12-31 04:18:52 -0500
committermidipix <writeonce@midipix.org>2018-12-31 21:37:16 -0500
commit8fd818a1b2dcc4cc3d11ae16514733b09f3c11b3 (patch)
treeab8f4fc9652436bede91b7b6476552b218aa2478
parent2b5dd6cbc860836a6026fc18980afa8388fccf63 (diff)
downloadperk-8fd818a1b2dcc4cc3d11ae16514733b09f3c11b3.tar.bz2
perk-8fd818a1b2dcc4cc3d11ae16514733b09f3c11b3.tar.xz
build system: ccenv: also update configure's (mb_-prefixed) variables.
-rw-r--r--sofort/ccenv/ccenv.sh23
1 files changed, 22 insertions, 1 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh
index 354dd90..31b7dd5 100644
--- a/sofort/ccenv/ccenv.sh
+++ b/sofort/ccenv/ccenv.sh
@@ -934,7 +934,28 @@ ccenv_output_defs()
| sed -e 's/[ \t]*$//g' \
> "$ccenv_mk"
- return 0
+ if [ "$ccenv_cfgtype" = 'host' ]; then
+ for __var in $ccenv_vars; do
+ ccenv_src_var=$__var
+ ccenv_dst_var=mb_${__var#*ccenv_}
+ ccenv_var_expr='${'$ccenv_src_var':-}'
+ eval $ccenv_dst_var=$ccenv_var_expr
+
+ done
+
+ mb_host=$ccenv_host
+ mb_cchost=$ccenv_cchost
+ else
+ for __var in $ccenv_vars; do
+ ccenv_src_var=$__var
+ ccenv_dst_var=mb_native_${__var#*ccenv_}
+ ccenv_var_expr='${'$ccenv_src_var':-}'
+ eval "$ccenv_dst_var=$ccenv_var_expr"
+ done
+
+ mb_native_host=$ccenv_host
+ mb_native_cchost=$ccenv_cchost
+ fi
}
ccenv_clean_up()