Merge pull request #75325 from SataQiu/fix-makefile-20190313

Fix a minor bug for `make update`
k3s-v1.15.3
Kubernetes Prow Robot 2019-03-20 09:53:50 -07:00 committed by GitHub
commit aedafe7435
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -151,10 +151,10 @@ define UPDATE_HELP_INFO
endef
.PHONY: update
ifeq ($(PRINT_HELP),y)
update: generated_files
update:
@echo "$$UPDATE_HELP_INFO"
else
update:
update: generated_files
CALLED_FROM_MAIN_MAKEFILE=1 hack/make-rules/update.sh
endif