summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCarlos Martín Nieto <[email protected]>2015-12-19 01:30:28 +0100
committerCarlos Martín Nieto <[email protected]>2016-11-01 00:17:51 +0100
commit9c5fb973fcc1acd7cd55e120fefef101be46e60a (patch)
tree5e4476bc3b86fff5f5962e143918cbb408dc59d7 /Makefile
parent9af9dd3ad71055e60ff7af6ffd5da42960915996 (diff)
Get rid of the with-static.sh script
CGO can perform variable substitution in the directives, so we don't need to use a script to set up the variables; we can let the go tool do it for us.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 3040857..39fc558 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ build-libgit2:
test: build-libgit2
go run script/check-MakeGitError-thread-lock.go
- ./script/with-static.sh go test ./...
+ go test ./...
install: build-libgit2
- ./script/with-static.sh go install ./...
+ go install ./...