Merge pull request #46269 from xiangpengzhao/fix-make-helpinfo

Automatic merge from submit-queue

Update examples in Makefile with WHAT arguments changed.

**What this PR does / why we need it**:
The examples `make check WHAT` and `make vet WHAT` in Makefile don't work anymore. This PR updates them.

**Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #
xref: https://github.com/kubernetes/community/issues/327, https://github.com/kubernetes/community/pull/296, https://github.com/kubernetes/kubernetes/pull/39433

**Special notes for your reviewer**:

**Release note**:

```release-note
NONE
```
pull/6/head
Kubernetes Submit Queue 2017-05-26 01:33:30 -07:00 committed by GitHub
commit 99eee154f6
1 changed files with 2 additions and 2 deletions

View File

@ -153,7 +153,7 @@ define CHECK_TEST_HELP_INFO
# Example:
# make check
# make test
# make check WHAT=pkg/kubelet GOFLAGS=-v
# make check WHAT=./pkg/kubelet GOFLAGS=-v
endef
.PHONY: check test
ifeq ($(PRINT_HELP),y)
@ -333,7 +333,7 @@ define VET_HELP_INFO
#
# Example:
# make vet
# make vet WHAT=pkg/kubelet
# make vet WHAT=./pkg/kubelet
endef
.PHONY: vet
ifeq ($(PRINT_HELP),y)