pkg.c (string_list_to_string): Patch from Paul Bender so flags other

than -I and -L are passed through (with mangling) when
PKG_CONFIG_SYSROOT_DIR is set.
This commit is contained in:
Tollef Fog Heen 2008-01-31 02:27:33 +01:00
parent 515745885f
commit 3e6c5da35a
2 changed files with 11 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2008-01-31 Tollef Fog Heen <tfheen@err.no>
* pkg.c (string_list_to_string): Patch from Paul Bender so flags
other than -I and -L are passed through (with mangling) when
PKG_CONFIG_SYSROOT_DIR is set.
2008-01-16 Tollef Fog Heen <tfheen@err.no>
* NEWS, configure.in: Release 0.23

6
pkg.c
View file

@ -483,8 +483,12 @@ string_list_to_string (GSList *list)
g_string_append (str, pcsysrootdir);
g_string_append (str, tmpstr+2);
}
else
{
g_string_append (str, tmpstr);
}
}
else
else
{
g_string_append (str, tmpstr);
}