aboutsummaryrefslogtreecommitdiffstats
path: root/testing/lxd/lxd-dont-go-get.patch
blob: 22593ef5eda6ce545a992f1dec40012f1da5496c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
diff --git a/Makefile b/Makefile
index 99f2aa6..4d79b8b 100644
--- a/Makefile
+++ b/Makefile
@@ -15,13 +15,11 @@ ifeq ($(TAG_SQLITE3),)
 	exit 1
 endif
 
-	go get -t -v -d ./...
 	CC=$(CC) go install -v -tags "$(TAG_SQLITE3)" $(DEBUG) ./...
 	@echo "LXD built successfully"
 
 .PHONY: client
 client:
-	go get -t -v -d ./...
 	go install -v -tags "$(TAG_SQLITE3)" $(DEBUG) ./lxc
 	@echo "LXD client built successfully"
 
@@ -68,7 +66,6 @@ deps:
 
 .PHONY: update
 update:
-	go get -t -v -d -u ./...
 	@echo "Dependencies updated"
 
 .PHONY: update-protobuf
@@ -89,15 +86,11 @@ ifeq ($(TAG_SQLITE3),)
 	exit 1
 endif
 
-	go get -t -v -d ./...
 	CC=$(CC) go install -v -tags "$(TAG_SQLITE3) logdebug" $(DEBUG) ./...
 	@echo "LXD built successfully"
 
 .PHONY: check
 check: default
-	go get -v -x github.com/rogpeppe/godeps
-	go get -v -x github.com/remyoudompheng/go-misc/deadcode
-	go get -v -x github.com/golang/lint/golint
 	go test -v -tags "$(TAG_SQLITE3)" $(DEBUG) ./...
 	cd test && ./main.sh
 
@@ -113,7 +106,6 @@ dist:
 	ln -s ../../../../lxd-$(VERSION) $(TMP)/dist/src/github.com/lxc/lxd
 
 	# Download dependencies
-	cd $(TMP)/lxd-$(VERSION) && GOPATH=$(TMP)/dist go get -t -v -d ./...
 
 	# Download the cluster-enabled sqlite/dqlite
 	git clone --depth=1 https://github.com/CanonicalLtd/dqlite $(TMP)/dist/dqlite
@@ -149,7 +141,6 @@ update-po:
 	done
 
 update-pot:
-	go get -v -x github.com/snapcore/snapd/i18n/xgettext-go/
 	xgettext-go -o po/$(DOMAIN).pot --add-comments-tag=TRANSLATORS: --sort-output --package-name=$(DOMAIN) --msgid-bugs-address=lxc-devel@lists.linuxcontainers.org --keyword=i18n.G --keyword-plural=i18n.NG lxc/*.go lxc/*/*.go
 
 build-mo: $(MOFILES)