diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-09-11 17:39:38 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-09-11 17:39:38 +0200 |
commit | 451f4a48f60965af980913d46a28947a834b3cd8 (patch) | |
tree | b077a86fe9bf0dc094aae6f751b8f8ee30f6080d /build/cxx | |
parent | 7d61f6fbbe0561f371436a74d4651abdbdde47df (diff) |
Use install::alisa_rule to ignore non-installable prerequisites
Diffstat (limited to 'build/cxx')
-rw-r--r-- | build/cxx/install | 2 | ||||
-rw-r--r-- | build/cxx/install.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/build/cxx/install b/build/cxx/install index 3a6f463..7117fb8 100644 --- a/build/cxx/install +++ b/build/cxx/install @@ -12,7 +12,7 @@ namespace build { namespace cxx { - class install: public build::install::rule + class install: public build::install::file_rule { public: virtual bool diff --git a/build/cxx/install.cxx b/build/cxx/install.cxx index b623349..e6417a6 100644 --- a/build/cxx/install.cxx +++ b/build/cxx/install.cxx @@ -40,7 +40,7 @@ namespace build // match_result r (link::instance.match (a, t, hint)); - return r ? install::rule::match (a, t, "") : r; + return r ? install::file_rule::match (a, t, "") : r; } install install::instance; |