Commit 41506d5d by Geoff Lang

Update the gclient config instructions to not use relative paths.

As of https://codereview.chromium.org/1406053003 relative paths are no longer valid for the solution name. Update the docs to use the full current directory instead. BUG=angleproject:1204 Change-Id: I42b289fdad6d85901f431bb701f2a08e0ad0deb3 Reviewed-on: https://chromium-review.googlesource.com/311180Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Tested-by: 's avatarGeoff Lang <geofflang@chromium.org>
parent f85a8439
...@@ -25,10 +25,20 @@ Set the following environment variables as needed: ...@@ -25,10 +25,20 @@ Set the following environment variables as needed:
Download the ANGLE source by running the following commands: Download the ANGLE source by running the following commands:
On Windows:
``` ```
mkdir angle mkdir angle
cd angle cd angle
gclient config --name . --unmanaged https://chromium.googlesource.com/angle/angle.git gclient config --name %cd% --unmanaged https://chromium.googlesource.com/angle/angle.git
gclient sync
git checkout master
```
On Posix systems:
```
mkdir angle
cd angle
gclient config --name `pwd` --unmanaged https://chromium.googlesource.com/angle/angle.git
gclient sync gclient sync
git checkout master git checkout master
``` ```
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment