Skip to content

Commit 1fdb86e

Browse files
committed
Add support for following symlinks in make.py
1 parent 0a14cc4 commit 1fdb86e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/toolchains/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ def scan_resources(self, path):
356356
bottom-up mode the directories in dirnames are generated before dirpath
357357
itself is generated.
358358
"""
359-
for root, dirs, files in walk(path):
359+
for root, dirs, files in walk(path, followlinks=True):
360360
# Remove ignored directories
361361
for d in copy(dirs):
362362
if d == '.hg':

0 commit comments

Comments
 (0)