Merge pull request #1388 from adelton/no-gopath
The Makefile works without GOPATH set and without install.tools fine.
This commit is contained in:
commit
4149ee77a8
1 changed files with 1 additions and 21 deletions
22
README.md
22
README.md
|
@ -158,28 +158,9 @@ apt-get install -y \
|
||||||
|
|
||||||
### Get Source Code
|
### Get Source Code
|
||||||
|
|
||||||
As with other Go projects, CRI-O must be cloned into a directory structure like:
|
Clone the source code using:
|
||||||
|
|
||||||
```
|
|
||||||
GOPATH
|
|
||||||
└── src
|
|
||||||
└── github.com
|
|
||||||
└── kubernetes-incubator
|
|
||||||
└── cri-o
|
|
||||||
```
|
|
||||||
|
|
||||||
First, configure a `GOPATH` (if you are using go1.8 or later, this defaults to `~/go`).
|
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
export GOPATH=~/go
|
|
||||||
mkdir -p $GOPATH
|
|
||||||
```
|
|
||||||
|
|
||||||
Next, clone the source code using:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
mkdir -p $GOPATH/src/github.com/kubernetes-incubator
|
|
||||||
cd $_ # or cd $GOPATH/src/github.com/kubernetes-incubator
|
|
||||||
git clone https://github.com/kubernetes-incubator/cri-o # or your fork
|
git clone https://github.com/kubernetes-incubator/cri-o # or your fork
|
||||||
cd cri-o
|
cd cri-o
|
||||||
```
|
```
|
||||||
|
@ -187,7 +168,6 @@ cd cri-o
|
||||||
### Build
|
### Build
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
make install.tools
|
|
||||||
make
|
make
|
||||||
sudo make install
|
sudo make install
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue