| Index: base/base_paths_posix.cc
|
| diff --git a/base/base_paths_posix.cc b/base/base_paths_posix.cc
|
| index 84120097d6f1f4668fbfd3d386a4b271f31474c2..45b397ee90130cf9dc1d94a1d65fb00a23f7a07e 100644
|
| --- a/base/base_paths_posix.cc
|
| +++ b/base/base_paths_posix.cc
|
| @@ -63,7 +63,7 @@ bool PathProviderPosix(int key, FilePath* result) {
|
| // tree configurations (sub-project builds, gyp --output_dir, etc.)
|
| scoped_ptr<base::Environment> env(base::Environment::Create());
|
| std::string cr_source_root;
|
| - if (env->GetEnv("CR_SOURCE_ROOT", &cr_source_root)) {
|
| + if (env->GetVar("CR_SOURCE_ROOT", &cr_source_root)) {
|
| path = FilePath(cr_source_root);
|
| if (file_util::PathExists(path.Append("base/base_paths_posix.cc"))) {
|
| *result = path;
|
|
|