diff options
author | midipix <writeonce@midipix.org> | 2021-04-11 09:38:21 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-04-11 10:22:31 +0000 |
commit | f4fd5f69c3fdd1d72ee3f7fb8d336a7e5fc5c390 (patch) | |
tree | 713aa6b71816d5c60659b14f0e37f3c56cebdb5d | |
parent | 7be0926cefd5b04084939394f50f3e2aed74f84a (diff) | |
download | sbpython3-f4fd5f69c3fdd1d72ee3f7fb8d336a7e5fc5c390.tar.bz2 sbpython3-f4fd5f69c3fdd1d72ee3f7fb8d336a7e5fc5c390.tar.xz |
build system: cfgtest.sh: append LIBDIR as the last linker path element.
-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") \ |