summaryrefslogtreecommitdiff
path: root/scripts/dependencyinfo.py
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@digia.com>2014-05-26 16:23:35 +0200
committerChristian Stenger <christian.stenger@digia.com>2014-05-27 07:17:56 +0200
commite30e3e3ba1c1a4c321543b80bd1112e2d1c21d41 (patch)
treec3d8477fe19a2c325c1a3e9207af91b9d117ced0 /scripts/dependencyinfo.py
parent6a4e0f17bec0043f95236b7a2438ee26adb8da85 (diff)
downloadqt-creator-e30e3e3ba1c1a4c321543b80bd1112e2d1c21d41.tar.gz
Scripts: Adjust dependency checker to new plugins structure
Change-Id: If9fb1309335e61e9133ece8fd12c8033a447d6b4 Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
Diffstat (limited to 'scripts/dependencyinfo.py')
-rw-r--r--scripts/dependencyinfo.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/scripts/dependencyinfo.py b/scripts/dependencyinfo.py
index c747238712..4f477e33cc 100644
--- a/scripts/dependencyinfo.py
+++ b/scripts/dependencyinfo.py
@@ -231,12 +231,10 @@ class BinaryDirExaminer:
self.libraries.append(Library(l))
def _findPlugins(self, path):
- vendordirs = glob.glob(os.path.join(path, "lib", "qtcreator", "plugins", "*"))
- for dir in vendordirs:
- pluginspecs = glob.glob(os.path.join(dir, "*.pluginspec"))
- for spec in pluginspecs:
- log.debug(' Looking at plugin "%s".', spec)
- self.plugins.append(Plugin(spec))
+ pluginspecs = glob.glob(os.path.join(path, "lib", "qtcreator", "plugins", "*.pluginspec"))
+ for spec in pluginspecs:
+ log.debug(' Looking at plugin "%s".', spec)
+ self.plugins.append(Plugin(spec))