Bug 970123 follow-up: convert the tabs injected into the file into spaces, DONTBUILD

This commit is contained in:
Ehsan Akhgari 2014-02-18 08:58:18 -05:00
Родитель 8e4c83b3d6
Коммит 5c59bd4aa6
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -103,10 +103,10 @@ def dependentlibs(lib, libpaths, func):
deppath = os.path.join(dir, dep)
if os.path.exists(deppath):
deps.extend([d for d in dependentlibs(deppath, libpaths, func) if not d in deps])
# Black list the ICU data DLL because preloading it at startup
# leads to startup performance problems because of its excessive
# size (around 10MB).
if not dep.startswith("icudt"):
# Black list the ICU data DLL because preloading it at startup
# leads to startup performance problems because of its excessive
# size (around 10MB).
if not dep.startswith("icudt"):
deps.append(dep)
break