Merge pull request #41840 from ixdy/make-quick-release

Automatic merge from submit-queue (batch tested with PRs 41540, 41808, 41710, 41838, 41840)

Make make quick-release quick again

**What this PR does / why we need it**: fix bug in #39257 which was causing `make quick-release` to build for all platforms.

It seems like the `make` target variable line was setting `KUBE_RELEASE_RUN_TESTS` to `n KUBE_FASTBUILD = true`, rather than setting both variables.

**Release note**:

```release-note
NONE
```
This commit is contained in:
Kubernetes Submit Queue 2017-02-23 03:29:37 -08:00 committed by GitHub
commit 1320021aaf

View File

@ -368,7 +368,8 @@ ifeq ($(PRINT_HELP),y)
release-skip-tests quick-release:
@echo "$$RELEASE_SKIP_TESTS_HELP_INFO"
else
release-skip-tests quick-release: KUBE_RELEASE_RUN_TESTS = n KUBE_FASTBUILD = true
release-skip-tests quick-release: KUBE_RELEASE_RUN_TESTS = n
release-skip-tests quick-release: KUBE_FASTBUILD = true
release-skip-tests quick-release:
build/release.sh
endif