mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1229233 - Properly skip the top-level directory in the RecursiveMake backend. r=gps
Somehow this never ended up being a problem in practice, but somehow with a minimalistic test case, it becomes one.
This commit is contained in:
parent
22467dc0fd
commit
54181dfb5c
@ -809,7 +809,8 @@ class RecursiveMakeBackend(CommonBackend):
|
||||
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',
|
||||
|
Loading…
Reference in New Issue
Block a user