diff options
author | midipix <writeonce@midipix.org> | 2021-04-11 09:38:21 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-04-11 10:22:30 +0000 |
commit | 36276a271744c50f59ed5b5550e971d536dfa3e8 (patch) | |
tree | 7cb9460a593848403f7eada22da3cee9bb5b7338 /sofort/cfgtest/cfgtest.sh | |
parent | 3a0d869915d79a801e09e6ca055e6276656c32e2 (diff) | |
download | mmglue-36276a271744c50f59ed5b5550e971d536dfa3e8.tar.bz2 mmglue-36276a271744c50f59ed5b5550e971d536dfa3e8.tar.xz |
build system: cfgtest.sh: append LIBDIR as the last linker path element.
Diffstat (limited to 'sofort/cfgtest/cfgtest.sh')
-rw-r--r-- | sofort/cfgtest/cfgtest.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sofort/cfgtest/cfgtest.sh b/sofort/cfgtest/cfgtest.sh index 3398483..45a324e 100644 --- a/sofort/cfgtest/cfgtest.sh +++ b/sofort/cfgtest/cfgtest.sh @@ -493,7 +493,7 @@ cfgtest_library_presence() cfgtest_cmd=$(printf '%s -o a.out -xc - %s' \ "$mb_cfgtest_cc" "$mb_cfgtest_cflags") - cfgtest_cmd="$cfgtest_cmd $cfgtest_libs" + cfgtest_cmd="$cfgtest_cmd -L${mb_libdir} $cfgtest_libs" printf '%s' "$cfgtest_code_snippet" \ | $(printf '%s' "$cfgtest_cmd") \ |