Update preset.
[bertos.git] / wizard / plugins / codelite.py
index 19c5ac7181fb772d2ab28408fa569802153c3bd2..156abe3c13fedf5883f861899bad389e2ad836b3 100644 (file)
@@ -32,7 +32,7 @@
 # Author: Lorenzo Berni <duplo@develer.com>
 #
 
-import os
+import os, sys
 
 import const
 
@@ -82,7 +82,12 @@ def findSources(path):
     if not path.endswith(os.sep):
         path += os.sep
     file_dict = {}
-    for root, dirs, files in os.walk(path, followlinks=True):
+    # also follow all symlinks under POSIX OSes
+    if os.name == 'posix' and sys.version_info >= (2, 6):
+        file_list = os.walk(path, followlinks=True)
+    else:
+        file_list = os.walk(path)
+    for root, dirs, files in file_list:
         if root.find("svn") == -1:
             file_dict[root.replace(path, "")] = {"dirs": [], "files": []}
             for dir in dirs: