Reduce verbosity in out-of-tree builds

This commit is contained in:
Thomas Nagy 2020-11-08 14:48:21 +01:00
parent 4e61e3a563
commit 4219f0822c
1 changed files with 4 additions and 2 deletions

View File

@ -753,9 +753,11 @@ class BuildContext(Context.Context):
else:
ln = self.launch_node()
if ln.is_child_of(self.bldnode):
if Logs.verbose > 1:
Logs.warn('Building from the build directory, forcing --targets=*')
ln = self.srcnode
elif not ln.is_child_of(self.srcnode):
if Logs.verbose > 1:
Logs.warn('CWD %s is not under %s, forcing --targets=* (run distclean?)', ln.abspath(), self.srcnode.abspath())
ln = self.srcnode