Merge pull request #1118 from AkihiroSuda/fix-integration

Makefile: fix INTEGRATION_PACKAGE
This commit is contained in:
Stephen Day 2017-06-29 13:59:46 -07:00 committed by GitHub
commit fb7f43f1a8

View File

@ -24,7 +24,7 @@ endif
# Project packages. # Project packages.
PACKAGES=$(shell go list ./... | grep -v /vendor/) PACKAGES=$(shell go list ./... | grep -v /vendor/)
INTEGRATION_PACKAGE=${PKG}/integration INTEGRATION_PACKAGE=${PKG}
TEST_REQUIRES_ROOT_PACKAGES=$(shell for f in $$(git grep -l testutil.RequiresRoot | grep -v Makefile);do echo "${PKG}/$$(dirname $$f)"; done) TEST_REQUIRES_ROOT_PACKAGES=$(shell for f in $$(git grep -l testutil.RequiresRoot | grep -v Makefile);do echo "${PKG}/$$(dirname $$f)"; done)
# Project binaries. # Project binaries.