forked from ariadne/pkgconf
pkg: do not print cflags or libs if they are NULL
parent
b44ce20d29
commit
37d87b9006
6
pkg.c
6
pkg.c
|
@ -60,13 +60,15 @@ pkg_traverse(pkg_t *root,
|
||||||
void
|
void
|
||||||
print_cflags(pkg_t *pkg, void *unused)
|
print_cflags(pkg_t *pkg, void *unused)
|
||||||
{
|
{
|
||||||
printf("%s ", pkg->cflags);
|
if (pkg->cflags != NULL)
|
||||||
|
printf("%s ", pkg->cflags);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
print_libs(pkg_t *pkg, void *unused)
|
print_libs(pkg_t *pkg, void *unused)
|
||||||
{
|
{
|
||||||
printf("%s ", pkg->libs);
|
if (pkg->libs != NULL)
|
||||||
|
printf("%s ", pkg->libs);
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, const char *argv[])
|
int main(int argc, const char *argv[])
|
||||||
|
|
Loading…
Reference in New Issue