diff options
author | midipix <writeonce@midipix.org> | 2021-06-12 08:20:12 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-12 10:45:04 +0000 |
commit | ce09d6bc0d650b73ee2dd974faaf2994bf241770 (patch) | |
tree | 37b609d7e1c3c8874a36b4d54cf61402c23e9b74 /sofort | |
parent | 7b7ac45389a0a600a2b8971ce39b49cb72d45602 (diff) | |
download | mdso-ce09d6bc0d650b73ee2dd974faaf2994bf241770.tar.bz2 mdso-ce09d6bc0d650b73ee2dd974faaf2994bf241770.tar.xz |
build system: cfgtest: added cfgtest_{makevar|cflags|ldflags}_set().
Diffstat (limited to 'sofort')
-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='+=' |