Bug 727960 part 2 - Don't set MOZ_LINKER_CACHE if it was already set. r=mfinkle

This commit is contained in:
Mike Hommey 2012-02-23 10:57:56 +01:00
Родитель fc32ec463a
Коммит 34a5114815
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -399,7 +399,10 @@ public class GeckoAppShell
GeckoAppShell.putenv("EXTERNAL_STORAGE=" + f.getPath());
File cacheFile = getCacheDir();
GeckoAppShell.putenv("MOZ_LINKER_CACHE=" + cacheFile.getPath());
String linkerCache = System.getenv("MOZ_LINKER_CACHE");
if (System.getenv("MOZ_LINKER_CACHE") == null) {
GeckoAppShell.putenv("MOZ_LINKER_CACHE=" + cacheFile.getPath());
}
File pluginDataDir = GeckoApp.mAppContext.getDir("plugins", 0);
GeckoAppShell.putenv("ANDROID_PLUGIN_DATADIR=" + pluginDataDir.getPath());