diff options
author | midipix <writeonce@midipix.org> | 2021-04-11 09:38:21 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-04-11 09:38:21 +0000 |
commit | a5d67e63fe1c5797843169d34c59b677e69b6f47 (patch) | |
tree | acd4e6686e52f1a04f7fc178b946e87f98681bb7 | |
parent | 4522b36a594939fc35b7a35bb901c5c4865dd8ef (diff) | |
download | sbpython2-a5d67e63fe1c5797843169d34c59b677e69b6f47.tar.bz2 sbpython2-a5d67e63fe1c5797843169d34c59b677e69b6f47.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") \ |