diff options
author | midipix <writeonce@midipix.org> | 2021-06-12 08:20:12 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-12 10:37:07 +0000 |
commit | 350ce23c12706e68366e21a02ac813524298ed42 (patch) | |
tree | 26fd5533b62d49eeb1697b3e6624cdfda1d90d95 /sofort/cfgtest/cfgtest.sh | |
parent | 4ac9d24605dc1192de5022c163dac329ce08f112 (diff) | |
download | slibtool-350ce23c12706e68366e21a02ac813524298ed42.tar.bz2 slibtool-350ce23c12706e68366e21a02ac813524298ed42.tar.xz |
build system: cfgtest: added cfgtest_{makevar|cflags|ldflags}_set().
Diffstat (limited to 'sofort/cfgtest/cfgtest.sh')
-rw-r--r-- | sofort/cfgtest/cfgtest.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sofort/cfgtest/cfgtest.sh b/sofort/cfgtest/cfgtest.sh index 4a50e8f..80ef06d 100644 --- a/sofort/cfgtest/cfgtest.sh +++ b/sofort/cfgtest/cfgtest.sh @@ -164,6 +164,21 @@ cfgtest_entity_size_prolog() } +cfgtest_makevar_set() +{ + if [ -n "${@}" ]; then + mb_internal_str='= ' + else + mb_internal_str='=' + fi + + printf '%-25s%s%s\n' "$mb_cfgtest_makevar" "$mb_internal_str" "${@}" \ + >> $mb_pwd/cfgdefs.mk + + unset cfgtest_internal_unit_test +} + + cfgtest_makevar_append() { mb_internal_str='+=' |