fragment: handle -include similarly to -isystem and -idirafter

pull/119/head
William Pitcock 2017-05-09 19:37:23 -05:00
parent 9fde4be1f3
commit 74eb74a3ef
1 changed files with 2 additions and 0 deletions

View File

@ -47,6 +47,7 @@ pkgconf_fragment_is_unmergeable(const char *string)
{"-ansi", 5},
{"-std=", 5},
{"-stdlib=", 8},
{"-include", 8},
};
if (*string != '-')
@ -69,6 +70,7 @@ pkgconf_fragment_should_munge(const char *string, const char *sysroot_dir)
static struct pkgconf_fragment_check check_fragments[] = {
{"-isystem", 8},
{"-idirafter", 10},
{"-include", 8},
};
if (*string != '/')