mirror of
https://gitlab.freedesktop.org/pkg-config/pkg-config.git
synced 2026-05-05 23:58:45 +02:00
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:
parent
515745885f
commit
3e6c5da35a
2 changed files with 11 additions and 1 deletions
|
|
@ -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
6
pkg.c
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue