diff options
Diffstat (limited to 'libbuild2/bin')
-rw-r--r-- | libbuild2/bin/target.cxx | 2 | ||||
-rw-r--r-- | libbuild2/bin/target.hxx | 8 |
2 files changed, 3 insertions, 7 deletions
diff --git a/libbuild2/bin/target.cxx b/libbuild2/bin/target.cxx index bf701c9..94851cd 100644 --- a/libbuild2/bin/target.cxx +++ b/libbuild2/bin/target.cxx @@ -53,7 +53,7 @@ namespace build2 const target_type libx::static_type { "libx", - &mtime_target::static_type, + &target::static_type, nullptr, nullptr, nullptr, diff --git a/libbuild2/bin/target.hxx b/libbuild2/bin/target.hxx index 5e7f445..8be8c23 100644 --- a/libbuild2/bin/target.hxx +++ b/libbuild2/bin/target.hxx @@ -200,14 +200,10 @@ namespace build2 // Common base for lib{} and libul{} groups. // - // We 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 + class LIBBUILD2_BIN_SYMEXPORT libx: public target { public: - using mtime_target::mtime_target; + using target::target; public: static const target_type static_type; |