Skip to content
This repository has been archived by the owner on Jul 3, 2018. It is now read-only.

Commit

Permalink
Bug 1229233 - Properly skip the top-level directory in the RecursiveM…
Browse files Browse the repository at this point in the history
…ake backend. r=gps

Somehow this never ended up being a problem in practice, but somehow with a
minimalistic test case, it becomes one.
  • Loading branch information
glandium committed Dec 1, 2015
1 parent d8414e8 commit b80b97e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/mozbuild/mozbuild/backend/recursivemake.py
Original file line number Diff line number Diff line change
Expand Up @@ -809,7 +809,8 @@ def consume_finished(self):
self._makefile_in_count += 1

for tier, skiplist in self._may_skip.items():
if bf.relobjdir in skiplist:
# topobjdir is an exception, it's still skipped.
if bf.relobjdir and bf.relobjdir in skiplist:
skiplist.remove(bf.relobjdir)
else:
self.log(logging.DEBUG, 'stub_makefile',
Expand Down

0 comments on commit b80b97e

Please sign in to comment.