diff options
author | midipix <writeonce@midipix.org> | 2021-06-09 00:58:24 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-09 01:00:18 +0000 |
commit | c0789f9c99149a3c894cc92b5a89124903d99a5b (patch) | |
tree | 9f1eb6f8b135bfed2088ef5ea76aa50165ab19db | |
parent | ff8810ef6ac5865f5b81f44f126a184837021782 (diff) | |
download | ntapi-c0789f9c99149a3c894cc92b5a89124903d99a5b.tar.bz2 ntapi-c0789f9c99149a3c894cc92b5a89124903d99a5b.tar.xz |
build system: cfgtest: cfgtest_common_init(): output ldflags to log.
-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 |