aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/bin/target.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2020-12-04 11:48:55 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2020-12-04 11:48:55 +0200
commitacfa68e443f2ec694d2716b8437bee1594d004b6 (patch)
tree6cfcaeca074a7ca4ace2d66647e047eeaa64f96e /libbuild2/bin/target.hxx
parent4168cda2363f3d796d0b9922852e249aac3131ba (diff)
Fix bug in installed libraries matching logic
Diffstat (limited to 'libbuild2/bin/target.hxx')
-rw-r--r--libbuild2/bin/target.hxx8
1 files changed, 6 insertions, 2 deletions
diff --git a/libbuild2/bin/target.hxx b/libbuild2/bin/target.hxx
index 8be8c23..f8d2dd0 100644
--- a/libbuild2/bin/target.hxx
+++ b/libbuild2/bin/target.hxx
@@ -200,10 +200,14 @@ namespace build2
// Common base for lib{} and libul{} groups.
//
- class LIBBUILD2_BIN_SYMEXPORT libx: public target
+ // Use mtime_target as a base for the "trust me it exists" functionality
+ // which we use, for example, to have installed lib{} prerequisites that
+ // are matched by the fallback file rule.
+ //
+ class LIBBUILD2_BIN_SYMEXPORT libx: public mtime_target
{
public:
- using target::target;
+ using mtime_target::mtime_target;
public:
static const target_type static_type;