diff options
author | midipix <writeonce@midipix.org> | 2018-12-26 08:48:48 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-12-30 18:39:00 -0500 |
commit | 7e34aa8d0cfd096571343a80eb537c84544d8c59 (patch) | |
tree | 089df5a7186a1240289c75d86ebb9978c8e8e5e8 /sofort/cfgtest | |
parent | 5539405abbd9ee5dd141df08aa4c093c53fe7d98 (diff) | |
download | sbpython2-7e34aa8d0cfd096571343a80eb537c84544d8c59.tar.bz2 sbpython2-7e34aa8d0cfd096571343a80eb537c84544d8c59.tar.xz |
build system: major overhaul: removed sysinfo, integrated ccenv.
Diffstat (limited to 'sofort/cfgtest')
-rw-r--r-- | sofort/cfgtest/cfgtest.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sofort/cfgtest/cfgtest.sh b/sofort/cfgtest/cfgtest.sh index b8821bb..d1e3b1b 100644 --- a/sofort/cfgtest/cfgtest.sh +++ b/sofort/cfgtest/cfgtest.sh @@ -45,7 +45,7 @@ cfgtest_target_section() cfgtest_native_section() { mb_cfgtest_cc="$mb_native_cc" - mb_cfgtest_cflags="$mb_native_cc_cflags" + mb_cfgtest_cflags="$mb_native_cflags" mb_cfgtest_cfgtype='native' cfgtest_comment 'native system tests' @@ -74,7 +74,7 @@ cfgtest_cflags_append() if [ $mb_cfgtest_cfgtype = 'target' ]; then mb_internal_makevar='CFLAGS_CONFIG' else - mb_internal_makevar='NATIVE_CC_CFLAGS' + mb_internal_makevar='NATIVE_CFLAGS' fi mb_cfgtest_makevar_saved=$mb_cfgtest_makevar @@ -90,7 +90,7 @@ cfgtest_ldflags_append() if [ $mb_cfgtest_cfgtype = 'target' ]; then mb_internal_makevar='LDFLAGS_CONFIG' else - mb_internal_makevar='NATIVE_CC_LDFLAGS' + mb_internal_makevar='NATIVE_LDFLAGS' fi mb_cfgtest_makevar_saved=$mb_cfgtest_makevar |