summaryrefslogtreecommitdiffhomepage
path: root/sofort/tools
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2019-08-21 11:56:30 +0000
committermidipix <writeonce@midipix.org>2019-08-21 11:56:30 +0000
commit9e6563ab4e096967bb294d91a901b57c5a983f88 (patch)
treea8875049d795ce06eaa6bad52ba43b2fb9141e81 /sofort/tools
parent131c6a5c0f71b2df2f98afeb3b72a571337d62a3 (diff)
downloadsofort-9e6563ab4e096967bb294d91a901b57c5a983f88.tar.bz2
sofort-9e6563ab4e096967bb294d91a901b57c5a983f88.tar.xz
build system: pkgconf.sh: add missing -L switch (oversight).
Diffstat (limited to 'sofort/tools')
-rwxr-xr-xsofort/tools/pkgconf.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/sofort/tools/pkgconf.sh b/sofort/tools/pkgconf.sh
index 392647a..9bbc652 100755
--- a/sofort/tools/pkgconf.sh
+++ b/sofort/tools/pkgconf.sh
@@ -55,11 +55,11 @@ fi
# ldflags (--libs)
if [ -n "$pkgconf_libdir" ] && [ -n "${PKGCONF_NAME}" ]; then
- pkgconf_ldflags="$pkgconf_libdir -l${PKGCONF_NAME}"
+ pkgconf_ldflags="-L$pkgconf_libdir -l${PKGCONF_NAME}"
elif [ -n "${PKGCONF_NAME}" ]; then
pkgconf_ldflags="-l${PKGCONF_NAME}"
else
- pkgconf_ldflags="$pkgconf_libdir"
+ pkgconf_ldflags="-L$pkgconf_libdir"
fi