diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-06-30 15:07:03 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-06-30 15:07:03 +0200 |
commit | 70af0087d8efb3f2f7dc9ffdf2568419913f16da (patch) | |
tree | dceeab7a3c600add8bf3f3375a2d83ca11213624 /build/search.cxx | |
parent | 18568ff0ff3dce89d694b494c5dfc9a32e63c9e6 (diff) |
Group "see through" iteration, take 1
Diffstat (limited to 'build/search.cxx')
-rw-r--r-- | build/search.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/build/search.cxx b/build/search.cxx index dec86db..872a0d6 100644 --- a/build/search.cxx +++ b/build/search.cxx @@ -76,6 +76,7 @@ namespace build tk.ext = &ext; } else + { // What should we do here, fail or say we didn't find anything? // Current think is that if the target type didn't provide the // default extension, then it doesn't want us to search for an @@ -84,7 +85,10 @@ namespace build // think. // //fail << "no default extension for prerequisite " << pk; + level3 ([&]{trace << "no existing file found for prerequisite " + << pk;}); return nullptr; + } } // Go over paths looking for a file. |