2012-01-26 08:17:54 +00:00
|
|
|
Index: chromium/src/chrome/browser/first_run/first_run_linux.cc
|
|
|
|
|
===================================================================
|
2013-09-21 10:25:54 +00:00
|
|
|
--- chrome/browser/first_run/first_run_internal_linux.cc
|
|
|
|
|
+++ chrome/browser/first_run/first_run_internal_linux.cc
|
2013-07-16 19:04:52 +00:00
|
|
|
@@ -22,8 +22,7 @@
|
2013-02-12 21:02:11 +00:00
|
|
|
base::FilePath MasterPrefsPath() {
|
2011-09-20 16:10:49 +00:00
|
|
|
// The standard location of the master prefs is next to the chrome binary.
|
2013-02-12 21:02:11 +00:00
|
|
|
base::FilePath master_prefs;
|
2011-09-20 16:10:49 +00:00
|
|
|
- if (!PathService::Get(base::DIR_EXE, &master_prefs))
|
2013-02-12 21:02:11 +00:00
|
|
|
- return base::FilePath();
|
2013-02-23 13:03:53 +00:00
|
|
|
+ master_prefs = base::FilePath("/etc/chromium");
|
2011-09-20 16:10:49 +00:00
|
|
|
return master_prefs.AppendASCII(installer::kDefaultMasterPrefs);
|
|
|
|
|
}
|
2013-02-12 21:02:11 +00:00
|
|
|
|