diff options
| author | Qing He <qing.he@intel.com> | 2010-07-13 15:04:13 +0800 |
|---|---|---|
| committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-16 16:25:17 +0100 |
| commit | 46039a37abf74b0757c7d81a3c25681f35b91a03 (patch) | |
| tree | 7324e3140e72ddb825056dd810ed2af96b457174 /meta/packages/pkgconfig/pkgconfig-0.23/sysrootfix.patch | |
| parent | 231f58590e0b3dc5b8b7771e36e71c540fcd6341 (diff) | |
| download | poky-46039a37abf74b0757c7d81a3c25681f35b91a03.tar.gz | |
pkgconfig: upgrade to version 0.25
from 0.23
changes:
- remove sysrootfix patch, it's now in upstream
- use external popt instead of the included one
Signed-off-by: Qing He <qing.he@intel.com>
Diffstat (limited to 'meta/packages/pkgconfig/pkgconfig-0.23/sysrootfix.patch')
| -rw-r--r-- | meta/packages/pkgconfig/pkgconfig-0.23/sysrootfix.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/meta/packages/pkgconfig/pkgconfig-0.23/sysrootfix.patch b/meta/packages/pkgconfig/pkgconfig-0.23/sysrootfix.patch deleted file mode 100644 index c5ee82e9aa..0000000000 --- a/meta/packages/pkgconfig/pkgconfig-0.23/sysrootfix.patch +++ /dev/null | |||
| @@ -1,31 +0,0 @@ | |||
| 1 | Index: pkg-config-0.23/pkg.c | ||
| 2 | =================================================================== | ||
| 3 | --- pkg-config-0.23.orig/pkg.c 2008-03-26 22:18:39.000000000 +0000 | ||
| 4 | +++ pkg-config-0.23/pkg.c 2008-03-26 22:31:11.000000000 +0000 | ||
| 5 | @@ -472,19 +472,15 @@ | ||
| 6 | while (tmp != NULL) | ||
| 7 | { | ||
| 8 | char *tmpstr = (char*) tmp->data; | ||
| 9 | - if (pcsysrootdir != NULL) | ||
| 10 | + if (pcsysrootdir != NULL && tmpstr[0] == '-' && | ||
| 11 | + (tmpstr[1] == 'I' || tmpstr[1] == 'L')) | ||
| 12 | { | ||
| 13 | - if (tmpstr[0] == '-' && | ||
| 14 | - (tmpstr[1] == 'I' || | ||
| 15 | - tmpstr[1] == 'L')) | ||
| 16 | - { | ||
| 17 | - g_string_append_c (str, '-'); | ||
| 18 | - g_string_append_c (str, tmpstr[1]); | ||
| 19 | - g_string_append (str, pcsysrootdir); | ||
| 20 | - g_string_append (str, tmpstr+2); | ||
| 21 | - } | ||
| 22 | + g_string_append_c (str, '-'); | ||
| 23 | + g_string_append_c (str, tmpstr[1]); | ||
| 24 | + g_string_append (str, pcsysrootdir); | ||
| 25 | + g_string_append (str, tmpstr+2); | ||
| 26 | } | ||
| 27 | - else | ||
| 28 | + else | ||
| 29 | { | ||
| 30 | g_string_append (str, tmpstr); | ||
| 31 | } | ||
