summaryrefslogtreecommitdiffhomepage
path: root/sofort/cfgtest
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2020-01-06 08:39:53 +0000
committermidipix <writeonce@midipix.org>2020-01-06 08:49:13 +0000
commit9489627dd31d1869a821cb99b29d507b3a491917 (patch)
tree308121f2b26de18e7e93eb24b13d6b5c1e36fff1 /sofort/cfgtest
parent1c36b7386dae139a20e7d9df4bc11822f028398a (diff)
downloadmmglue-9489627dd31d1869a821cb99b29d507b3a491917.tar.bz2
mmglue-9489627dd31d1869a821cb99b29d507b3a491917.tar.xz
build system: cfgtest_{host|native}_section(): fully expand all cflags.
Diffstat (limited to 'sofort/cfgtest')
-rw-r--r--sofort/cfgtest/cfgtest.sh11
1 files changed, 2 insertions, 9 deletions
diff --git a/sofort/cfgtest/cfgtest.sh b/sofort/cfgtest/cfgtest.sh
index 8cfc039..534497a 100644
--- a/sofort/cfgtest/cfgtest.sh
+++ b/sofort/cfgtest/cfgtest.sh
@@ -34,16 +34,9 @@ cfgtest_comment()
cfgtest_host_section()
{
- mb_cfgtest_cflags=
- mb_cfgtest_cflags="$mb_cfgtest_cflags $mb_cflags_debug $mb_cflags_config"
- mb_cfgtest_cflags="$mb_cfgtest_cflags $mb_cflags_sysroot $mb_cflags_common"
- mb_cfgtest_cflags="$mb_cfgtest_cflags $mb_cflags_cmdline $mb_cflags"
- mb_cfgtest_cflags="$mb_cfgtest_cflags $mb_cflags_path $mb_cflags_os"
- mb_cfgtest_cflags="$mb_cfgtest_cflags $mb_cflags_site $mb_cflags_strict"
- mb_cfgtest_cflags="$mb_cfgtest_cflags $mb_cflags_last $mb_cflags_once"
-
mb_cfgtest_cc="$ccenv_host_cc"
mb_cfgtest_cfgtype='host'
+ mb_cfgtest_cflags=$(make -s -f "$mb_pwd/Makefile.tmp" .cflags-host)
cfgtest_comment 'host-specific tests'
}
@@ -52,8 +45,8 @@ cfgtest_host_section()
cfgtest_native_section()
{
mb_cfgtest_cc="$mb_native_cc"
- mb_cfgtest_cflags="$mb_native_cflags"
mb_cfgtest_cfgtype='native'
+ mb_cfgtest_cflags=$(make -s -f "$mb_pwd/Makefile.tmp" .cflags-native)
cfgtest_comment 'native system tests'
}