Remove all for make install

This is not how Makefiles work and install should not build everything
again.

Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
This commit is contained in:
Michael Crosby 2015-06-29 13:33:15 -07:00
parent c4fd381a38
commit 75ab73b8ab
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ all:
go get github.com/tools/godep
godep go build -o runc .
install: all
install:
cp runc /usr/local/bin/runc
rm runc