diff options
author | midipix <writeonce@midipix.org> | 2021-06-09 00:58:24 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-09 00:58:24 +0000 |
commit | f3f1d37b0f5b2b2fb5ea7701468acd3cf7666d68 (patch) | |
tree | d2820192f5fe2a9d5cb839dcacb600b5d0fa96a1 /sofort/cfgtest | |
parent | 2bacaa8b3a27d82e9e84cc9f4633f6e8dc11e428 (diff) | |
download | slibtool-f3f1d37b0f5b2b2fb5ea7701468acd3cf7666d68.tar.bz2 slibtool-f3f1d37b0f5b2b2fb5ea7701468acd3cf7666d68.tar.xz |
build system: cfgtest: cfgtest_common_init(): output ldflags to log.
Diffstat (limited to 'sofort/cfgtest')
-rw-r--r-- | sofort/cfgtest/cfgtest.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sofort/cfgtest/cfgtest.sh b/sofort/cfgtest/cfgtest.sh index 3a2b0f7..1e3d707 100644 --- a/sofort/cfgtest/cfgtest.sh +++ b/sofort/cfgtest/cfgtest.sh @@ -280,6 +280,10 @@ cfgtest_common_init() printf ' \\\n\t%s' "$cfgtest_cflag" >&3 done + for cfgtest_ldflag in $(printf '%s' "$mb_cfgtest_ldflags"); do + printf ' \\\n\t%s' "$cfgtest_ldflag" >&3 + done + if [ "$cfgtest_type" = 'lib' ]; then for cfgtest_lib in $(printf '%s' "$cfgtest_libs"); do printf ' \\\n\t%s' "$cfgtest_lib" >&3 |