From 1fdb86eda71488c641e58753d58a666eb72c25da Mon Sep 17 00:00:00 2001 From: Christopher Haster Date: Wed, 20 Apr 2016 21:08:47 -0500 Subject: [PATCH] Add support for following symlinks in make.py --- tools/toolchains/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/toolchains/__init__.py b/tools/toolchains/__init__.py index 845312b8df..e5c5682118 100644 --- a/tools/toolchains/__init__.py +++ b/tools/toolchains/__init__.py @@ -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':