Merge pull request #215 from lag-linaro/master

docs: build-android.md: Add missing step to initialise the build env
This commit is contained in:
Simon Fels 2017-05-04 18:29:52 +02:00 committed by GitHub
commit 7d5f6e0d81
2 changed files with 10 additions and 4 deletions

View file

@ -33,8 +33,15 @@ This will take quite some time depending on the speed of your internet connectio
## Build Android
When all sources are successfully downloaded you can start building Android
itself. Initialize the build by
When all sources are successfully downloaded you can start building Android itself.
Firstly initialize the environment with the ```envsetup.sh``` script.
```
$ . build/envsetup.sh
```
Then initialize the build using ```lunch```.
```
$ lunch anbox_desktop_x86_64-userdebug

View file

@ -43,8 +43,7 @@ void ConnectionCreator::create_connection_for(
socket->close();
WARNING(
"A second client tried to connect. Denied request as we already have "
"one"
"and only allow a single client");
"one and only allow a single client");
return;
}