diff options
author | midipix <writeonce@midipix.org> | 2020-01-02 22:30:36 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2020-01-02 22:45:37 +0000 |
commit | 3ecffef11dba1a77340529198984d0f08533aaea (patch) | |
tree | 838dff37b142fb7f52542df187cfce60b098ed57 | |
parent | 24893669d6c06bbe6db1653556d96bd5197efb34 (diff) | |
download | sbpython2-3ecffef11dba1a77340529198984d0f08533aaea.tar.bz2 sbpython2-3ecffef11dba1a77340529198984d0f08533aaea.tar.xz |
build system: cfgtest_target_section(): use vars directly.
-rw-r--r-- | sofort/cfgtest/cfgtest.sh | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/sofort/cfgtest/cfgtest.sh b/sofort/cfgtest/cfgtest.sh index 24d311f..ba55ba9 100644 --- a/sofort/cfgtest/cfgtest.sh +++ b/sofort/cfgtest/cfgtest.sh @@ -34,8 +34,15 @@ cfgtest_comment() cfgtest_target_section() { - mb_cfgtest_cc=$(make -s -f "$mb_pwd/Makefile.tmp" .display-cc) - mb_cfgtest_cflags=$(make -s -f "$mb_pwd/Makefile.tmp" .display-cflags) + 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='target' cfgtest_comment 'target-specific tests' |