diff options
author | midipix <writeonce@midipix.org> | 2019-08-21 11:56:30 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-08-21 12:00:47 +0000 |
commit | b17dd07aaca4c5ca1844a3d85873f2ce6b374a24 (patch) | |
tree | cd15af3dfba67212309d7dcb56cbd4150ecbcd8c /sofort | |
parent | 7e95c5893a231597917784d2feef554165908b79 (diff) | |
download | perk-b17dd07aac.tar.bz2 perk-b17dd07aac.tar.xz |
build system: pkgconf.sh: add missing -L switch (oversight).
Diffstat (limited to 'sofort')
-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 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 |