From 8d81ff3bd634a0d69537528c5a38bd8ecba45eaf Mon Sep 17 00:00:00 2001 From: Markus Blatt <markus@dr-blatt.de> Date: Thu, 9 Jan 2014 15:17:49 +0100 Subject: [PATCH] [release,bugfix] Makes PKG_CONFIG_PATH honor all (lib lib/multiarch). Previously some of the pathes (e.g the multiarch ones) took precedence over the others. But as with same some of the pkgconfig files are installed below lib/<multiarch> and others (if there is not object library) are not. With this patch all possible install locations of pkgconfig files are added to the path if they exist. --- bin/dunecontrol | 1 - 1 file changed, 1 deletion(-) diff --git a/bin/dunecontrol b/bin/dunecontrol index 762b8ca39..9d8fe614c 100755 --- a/bin/dunecontrol +++ b/bin/dunecontrol @@ -257,7 +257,6 @@ extract_multiarch for i in $MULTIARCH_LIBDIR lib64 lib32 lib; do if test -d "$PREFIX_DIR/$i/pkgconfig"; then export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:$PREFIX_DIR/$i/pkgconfig" - break; fi done -- GitLab