summaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2015-12-04 16:40:51 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2015-12-04 16:45:23 +0900
commit0b9c4e1e74da7dfca932bd97f004d539aa76537f (patch)
treef60a9150edbe405cc243dac3c11074319fd4b22b /src/Makefile
parent248320fa55c75a69a8f479125de68f10ee2311d0 (diff)
Remove submodules and disable GO15VENDOREXPERIMENT (#430)
Having submodules causes vim-plug or other vim plugin managers to clone them with no real benefit to the end-users. There's currently no compelling reason for me to use submodules.
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Makefile b/src/Makefile
index e125283c..abdd6ef9 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -41,8 +41,8 @@ android-build:
rm -f $(RELEASEARM7)
test:
- GO15VENDOREXPERIMENT=1 go get
- GO15VENDOREXPERIMENT=1 SHELL=/bin/sh go test -v ./...
+ go get
+ SHELL=/bin/sh go test -v ./...
install: $(BINDIR)/fzf
@@ -53,10 +53,10 @@ clean:
cd fzf && rm -f fzf-*
fzf/$(BINARY32): $(SOURCES)
- cd fzf && GO15VENDOREXPERIMENT=1 GOARCH=386 CGO_ENABLED=1 go build -a -o $(BINARY32)
+ cd fzf && GOARCH=386 CGO_ENABLED=1 go build -a -o $(BINARY32)
fzf/$(BINARY64): $(SOURCES)
- cd fzf && GO15VENDOREXPERIMENT=1 go build -a -tags "$(TAGS)" -o $(BINARY64)
+ cd fzf && go build -a -tags "$(TAGS)" -o $(BINARY64)
$(BINDIR)/fzf: fzf/$(BINARY64) | $(BINDIR)
cp -f fzf/$(BINARY64) $(BINDIR)