diff options
author | midipix <writeonce@midipix.org> | 2019-08-21 09:31:15 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-08-21 09:31:15 +0000 |
commit | 131c6a5c0f71b2df2f98afeb3b72a571337d62a3 (patch) | |
tree | fa643f03f8337d8d98fc0ef2941dd9acb6222db5 | |
parent | 56d0172b49bc1cb4074740b43b3e47afc1aaaecb (diff) | |
download | sofort-131c6a5c0f71b2df2f98afeb3b72a571337d62a3.tar.bz2 sofort-131c6a5c0f71b2df2f98afeb3b72a571337d62a3.tar.xz |
build system: pkgconf.sh: properly handle empty prefix variable.
-rwxr-xr-x | sofort/tools/pkgconf.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sofort/tools/pkgconf.sh b/sofort/tools/pkgconf.sh index 614fdec..392647a 100755 --- a/sofort/tools/pkgconf.sh +++ b/sofort/tools/pkgconf.sh @@ -20,6 +20,10 @@ else prefix=$(dirname "$PKGCONF_INCLUDEDIR") base=$(basename "$PKGCONF_INCLUDEDIR") + if [ "$prefix" = '/' ]; then + prefix= + fi + if [ "$prefix/$base" = "$PKGCONF_PREFIX/$base" ]; then pkgconf_includedir='${prefix}/'"${base}" pkgconf_cflags='-I${includedir}' @@ -37,6 +41,10 @@ else prefix=$(dirname "$PKGCONF_LIBDIR") base=$(basename "$PKGCONF_LIBDIR") + if [ "$prefix" = '/' ]; then + prefix= + fi + if [ "$prefix/$base" = "$PKGCONF_EXEC_PREFIX/$base" ]; then pkgconf_libdir='${exec_prefix}/'"${base}" else |