[cairo-boilerplate] Do not throw an error if an exclude target is not found.

If we fail to exclude a target because it was not in the list of
targets - job done and no need to throw a tantrum.
This commit is contained in:
Chris Wilson 2007-09-23 21:02:31 +01:00
parent 4f7c5a5033
commit dc23ecb619

View file

@ -417,11 +417,6 @@ cairo_boilerplate_get_targets (int *pnum_targets, cairo_bool_t *plimited_targets
}
num_targets = j;
if (!found) {
fprintf (stderr, "Cannot find target '%.*s'\n", (int)(end - tname), tname);
exit(-1);
}
if (*end)
end++;
tname = end;