From: Martin Neubauer Date: Wed, 25 Aug 2010 16:44:13 +0000 (-0400) Subject: src/pkg/Makefile: delete use of QUOTED_GOBIN X-Git-Tag: weekly.2010-09-06~93 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=9a04cba807f15cb2b2658083d358a0d630b59a06;p=gostls13.git src/pkg/Makefile: delete use of QUOTED_GOBIN R=rsc CC=golang-dev https://golang.org/cl/1997044 --- diff --git a/src/pkg/Makefile b/src/pkg/Makefile index c544078a82..67b7724b36 100644 --- a/src/pkg/Makefile +++ b/src/pkg/Makefile @@ -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