summaryrefslogtreecommitdiffhomepage
path: root/sofort/tools
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2019-08-21 14:40:38 -0400
committermidipix <writeonce@midipix.org>2019-08-21 14:40:38 -0400
commit42cfaf3fbc04f2cfd4e7c9e06ee734343963f106 (patch)
tree35ee28c87d3cb5f258e0cd3032fc9d95d5ef36c0 /sofort/tools
parent9e6563ab4e096967bb294d91a901b57c5a983f88 (diff)
downloadsofort-42cfaf3fbc04f2cfd4e7c9e06ee734343963f106.tar.bz2
sofort-42cfaf3fbc04f2cfd4e7c9e06ee734343963f106.tar.xz
build system: pkgconf.sh: output Libs and Ldflags more elegantly.
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 9bbc652..e14517f 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="-L$pkgconf_libdir -l${PKGCONF_NAME}"
+ pkgconf_ldflags='-L${libdir}'" -l${PKGCONF_NAME}"
elif [ -n "${PKGCONF_NAME}" ]; then
pkgconf_ldflags="-l${PKGCONF_NAME}"
else
- pkgconf_ldflags="-L$pkgconf_libdir"
+ pkgconf_ldflags='-L${libdir}'
fi