diff options
author | midipix <writeonce@midipix.org> | 2019-08-21 14:40:38 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-10-17 11:34:50 +0000 |
commit | 78887455d9faebbd3ae3e2969b3f940fe65c3fe3 (patch) | |
tree | 3c1681bbd41cea4b5cd2369afc99566b31f2ab5f | |
parent | bde9c471404b0b4c640a8fc5406ef503a1348fbe (diff) | |
download | ntux-78887455d9faebbd3ae3e2969b3f940fe65c3fe3.tar.bz2 ntux-78887455d9faebbd3ae3e2969b3f940fe65c3fe3.tar.xz |
build system: pkgconf.sh: output Libs and Ldflags more elegantly.
-rwxr-xr-x | sofort/tools/pkgconf.sh | 4 |
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 |