Commit 6962e2b7 authored by Russ Cox's avatar Russ Cox

make: use actual dependency for install

otherwise "make install" runs cp unconditionally

R=r
CC=golang-dev
https://golang.org/cl/802044
parent 5b257732
......@@ -60,7 +60,7 @@ testpackage-clean:
install: $(INSTALLFILES)
$(pkgdir)/$(TARG).a: package
$(pkgdir)/$(TARG).a: _obj/$(TARG).a
@test -d $(QUOTED_GOROOT)/pkg && mkdir -p $(pkgdir)/$(dir)
cp _obj/$(TARG).a "$@"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment