forked from qt-creator/qt-creator
Scripts: Adjust dependency checker to new plugins structure
Change-Id: If9fb1309335e61e9133ece8fd12c8033a447d6b4 Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
@@ -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))
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user