From e85e618a1b918f7279133eb1f446c1af871f5dd2 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 3 Dec 2020 11:00:24 +0200 Subject: Fix modules support for installed libraries --- libbuild2/bin/target.cxx | 2 +- libbuild2/bin/target.hxx | 8 ++------ 2 files changed, 3 insertions(+), 7 deletions(-) (limited to 'libbuild2/bin') 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; -- cgit v1.1