diff options
author | midipix <writeonce@midipix.org> | 2019-08-21 14:40:38 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-08-21 14:41:07 -0400 |
commit | 594e50f6c7b13e039b6b4224ee889687ab9fb64f (patch) | |
tree | bf6563582e570fad3e7d5fa9dc9a669b3844eaae /sofort | |
parent | e051e5383e7f6182a906376dfc4f53e1c9cc076c (diff) | |
download | pemagine-594e50f6c7b13e039b6b4224ee889687ab9fb64f.tar.bz2 pemagine-594e50f6c7b13e039b6b4224ee889687ab9fb64f.tar.xz |
build system: pkgconf.sh: output Libs and Ldflags more elegantly.
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 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 |