Add support for following symlinks in make.py

Christopher Haster 2016-04-20 21:08:47 -05:00
parent 0a14cc45c0
commit 1fdb86eda7
1 changed files with 1 additions and 1 deletions

View File

@ -356,7 +356,7 @@ class mbedToolchain:
bottom-up mode the directories in dirnames are generated before dirpath
itself is generated.
"""
for root, dirs, files in walk(path):
for root, dirs, files in walk(path, followlinks=True):
# Remove ignored directories
for d in copy(dirs):
if d == '.hg':