]> Cypherpunks repositories - gostls13.git/commitdiff
src/pkg/Makefile: delete use of QUOTED_GOBIN
authorMartin Neubauer <m.ne@gmx.net>
Wed, 25 Aug 2010 16:44:13 +0000 (12:44 -0400)
committerRuss Cox <rsc@golang.org>
Wed, 25 Aug 2010 16:44:13 +0000 (12:44 -0400)
R=rsc
CC=golang-dev
https://golang.org/cl/1997044

src/pkg/Makefile

index c544078a82b26a934256a3f1617986faa78b19a2..67b7724b362da33f57e36daab4d76aca91303b47 100644 (file)
@@ -9,14 +9,6 @@
 #
 # to rebuild the dependency information in Make.deps.
 
-nullstring :=
-space := $(nullstring) # a space at the end
-ifndef GOBIN
-QUOTED_HOME=$(subst $(space),\ ,$(HOME))
-GOBIN=$(QUOTED_HOME)/bin
-endif
-QUOTED_GOBIN=$(subst $(space),\ ,$(GOBIN))
-
 all: install
 
 DIRS=\
@@ -190,19 +182,19 @@ test.dirs: $(addsuffix .test, $(TEST))
 bench.dirs: $(addsuffix .bench, $(BENCH))
 
 %.clean:
-       +cd $* && $(QUOTED_GOBIN)/gomake clean
+       +cd $* && gomake clean
 
 %.install:
-       +cd $* && $(QUOTED_GOBIN)/gomake install
+       +cd $* && gomake install
 
 %.nuke:
-       +cd $* && $(QUOTED_GOBIN)/gomake nuke
+       +cd $* && gomake nuke
 
 %.test:
-       +cd $* && $(QUOTED_GOBIN)/gomake test
+       +cd $* && gomake test
 
 %.bench:
-       +cd $* && $(QUOTED_GOBIN)/gomake bench
+       +cd $* && gomake bench
 
 clean: clean.dirs