aboutsummaryrefslogtreecommitdiff
path: root/build/algorithm.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'build/algorithm.cxx')
-rw-r--r--build/algorithm.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/algorithm.cxx b/build/algorithm.cxx
index 5026782..ddf0071 100644
--- a/build/algorithm.cxx
+++ b/build/algorithm.cxx
@@ -116,11 +116,11 @@ namespace build
make_exception_guard (
[](target& t, const string& n)
{
- info << "while selecting rule " << n << " for target " << t;
+ info << "while applying rule " << n << " for target " << t;
},
t, n));
- t.recipe (ru.select (t, m));
+ t.recipe (ru.apply (t, m));
break;
}
else