From: duplo Date: Mon, 23 Feb 2009 17:49:37 +0000 (+0000) Subject: Remove the costrain of the symlink X-Git-Tag: 2.1.0~304 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=06b54dcaeaa1bb368a4f3542c3f6911e5187dcf5;p=bertos.git Remove the costrain of the symlink git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2378 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/wizard/bertos_utils.py b/wizard/bertos_utils.py index b74245bf..bc60860b 100644 --- a/wizard/bertos_utils.py +++ b/wizard/bertos_utils.py @@ -119,8 +119,7 @@ def findToolchains(pathList): toolchains = [] for element in pathList: for toolchain in glob.glob(element+ "/" + const.GCC_NAME): - if not os.path.islink(toolchain): - toolchains.append(toolchain) + toolchains.append(toolchain) return list(set(toolchains)) def getToolchainInfo(output):