diff options
-rw-r--r-- | libbuild2/cc/pkgconfig.cxx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libbuild2/cc/pkgconfig.cxx b/libbuild2/cc/pkgconfig.cxx index c3a9028..17cc2dc 100644 --- a/libbuild2/cc/pkgconfig.cxx +++ b/libbuild2/cc/pkgconfig.cxx @@ -1459,7 +1459,12 @@ namespace build2 const path& p (t->path ()); - if (verb >= 2) + // Note that generation can time some time if we have a large number of + // prerequisite libraries. + // + if (verb) + text << "gen " << *t; + else if (verb >= 2) text << "cat >" << p; if (ctx.dry_run) |