diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-04-17 15:55:16 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-04-17 15:55:16 +0000 |
commit | 23795ec71f546c4d89b911f67d539393d92059ce (patch) | |
tree | 16685b59334f636ec94b2ff2cd14eab2391567f0 /package/pkgconfig/pkg-config-0.23-fix-sysroot.patch | |
parent | 475bf3a83acf6a8e2a376ab8e170f403e9918c6a (diff) | |
download | buildroot-novena-23795ec71f546c4d89b911f67d539393d92059ce.tar.gz buildroot-novena-23795ec71f546c4d89b911f67d539393d92059ce.zip |
pkg-config: fix target package
As reported by Sven Neumann on the list.
Diffstat (limited to 'package/pkgconfig/pkg-config-0.23-fix-sysroot.patch')
-rw-r--r-- | package/pkgconfig/pkg-config-0.23-fix-sysroot.patch | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/package/pkgconfig/pkg-config-0.23-fix-sysroot.patch b/package/pkgconfig/pkg-config-0.23-fix-sysroot.patch deleted file mode 100644 index 36538112b..000000000 --- a/package/pkgconfig/pkg-config-0.23-fix-sysroot.patch +++ /dev/null @@ -1,34 +0,0 @@ -[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 - { |