summaryrefslogtreecommitdiffstats
path: root/package/pkg-config/pkg-config-0.23-fix-sysroot.patch
blob: 36538112b2cf3c2be534a2ec18880c694161bf59 (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
30
31
32
33
34
[PATCH] fix PKG_CONFIG_SYSROOT_DIR handling

With PKG_CONFIG_SYSROOT_DIR enabled, everything else than -L and -I words
gets stripped away.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 pkg.c |    8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

Index: pkg-config-0.23/pkg.c
===================================================================
--- pkg-config-0.23.orig/pkg.c
+++ pkg-config-0.23/pkg.c
@@ -472,17 +472,13 @@
   while (tmp != NULL)
     {
       char *tmpstr = (char*) tmp->data;
-      if (pcsysrootdir != NULL)
+      if (pcsysrootdir != NULL && tmpstr[0] == '-' &&
+          (tmpstr[1] == 'I' || tmpstr[1] == 'L'))
 	{
-	  if (tmpstr[0] == '-' &&
-	      (tmpstr[1] == 'I' ||
-	       tmpstr[1] == 'L'))
-	    {
 	      g_string_append_c (str, '-');
 	      g_string_append_c (str, tmpstr[1]);
 	      g_string_append (str, pcsysrootdir);
 	      g_string_append (str, tmpstr+2);
-	    }
 	}
       else 
 	{