summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/gpgme/gpgme/0005-gpgme-config-skip-all-lib-or-usr-lib-directories-in-.patch
blob: 7fe0c9538a817611e0a21ac2a37d1cd9e8e24458 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
From 57475742b0288b4ee53c01c59c3ab03c1ef7932e Mon Sep 17 00:00:00 2001
From: Alexander Kanavin <alex.kanavin@gmail.com>
Date: Thu, 13 Apr 2017 16:40:27 +0300
Subject: [PATCH] gpgme-config: skip all /lib* or /usr/lib* directories in
 output

The logic was not working in multilib setups which use other
directory names than plain /lib or /usr/lib.

Upstream-Status: Inappropriate [oe-core specific]
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>

---
 src/gpgme-config.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/gpgme-config.in b/src/gpgme-config.in
index 56b98f8..e96f3c3 100644
--- a/src/gpgme-config.in
+++ b/src/gpgme-config.in
@@ -157,7 +157,7 @@ while test $# -gt 0; do
             for i in $libs $tmp_l $assuan_libs $gpg_error_libs $tmp_x; do
               skip=no
               case $i in
-                  -L/usr/lib|-L/lib)
+                  -L/usr/lib*|-L/lib*)
                       skip=yes
                       ;;
                   -L*|-l*)