summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2019-08-21 14:40:38 -0400
committermidipix <writeonce@midipix.org>2019-08-21 14:41:06 -0400
commit33eb75e8897f0f66ae5167e808ef6d92b0d1a539 (patch)
tree9af87158e6a5eef2edc6cb7d21432fdb3c303b2b
parentbf7fe2cd8fd3067dc3079e5c8602e856e88e8f94 (diff)
downloadmdso-33eb75e8897f0f66ae5167e808ef6d92b0d1a539.tar.bz2
mdso-33eb75e8897f0f66ae5167e808ef6d92b0d1a539.tar.xz
build system: pkgconf.sh: output Libs and Ldflags more elegantly.
-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