Raul Rangel has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/34525 )
Change subject: Makefile: Don't create build directory for additional targets ......................................................................
Makefile: Don't create build directory for additional targets
BUG=b:112267918 TEST=Ran make help and verified build directory is no longer created
Change-Id: I4bb066b5c3b3d9a7bb19291ef928042b90f10440 --- M Makefile 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/25/34525/1
diff --git a/Makefile b/Makefile index dfc70e0..317a8eb 100644 --- a/Makefile +++ b/Makefile @@ -124,7 +124,7 @@ ifneq ($(filter %config %clean cross% clang iasl gnumake lint% help% what-jenkins-does,$(MAKECMDGOALS)),) NOCOMPILE:=1 endif -ifeq ($(MAKECMDGOALS), %clean) +ifneq ($(filter %clean lint% help% what-jenkins-does,$(MAKECMDGOALS)),) NOMKDIR:=1 endif endif
Patrick Georgi has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/34525 )
Change subject: Makefile: Don't create build directory for additional targets ......................................................................
Patch Set 1: Code-Review+2
Paul Menzel has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/34525 )
Change subject: Makefile: Don't create build directory for additional targets ......................................................................
Patch Set 1:
(1 comment)
https://review.coreboot.org/c/coreboot/+/34525/1//COMMIT_MSG Commit Message:
https://review.coreboot.org/c/coreboot/+/34525/1//COMMIT_MSG@12 PS1, Line 12: Change-Id: I4bb066b5c3b3d9a7bb19291ef928042b90f10440 Your Signed-off-by line is missing.
Hello build bot (Jenkins), Patrick Georgi, Martin Roth,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/34525
to look at the new patch set (#2).
Change subject: Makefile: Don't create build directory for additional targets ......................................................................
Makefile: Don't create build directory for additional targets
BUG=b:112267918 TEST=Ran make help and verified build directory is no longer created
Change-Id: I4bb066b5c3b3d9a7bb19291ef928042b90f10440 Signed-off-by: Raul E Rangel rrangel@chromium.org --- M Makefile 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/25/34525/2
Raul Rangel has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/34525 )
Change subject: Makefile: Don't create build directory for additional targets ......................................................................
Patch Set 2:
(1 comment)
https://review.coreboot.org/c/coreboot/+/34525/1//COMMIT_MSG Commit Message:
https://review.coreboot.org/c/coreboot/+/34525/1//COMMIT_MSG@12 PS1, Line 12: Change-Id: I4bb066b5c3b3d9a7bb19291ef928042b90f10440
Your Signed-off-by line is missing.
Done
Patrick Georgi has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/34525 )
Change subject: Makefile: Don't create build directory for additional targets ......................................................................
Patch Set 2: Code-Review+2
Patrick Georgi has submitted this change and it was merged. ( https://review.coreboot.org/c/coreboot/+/34525 )
Change subject: Makefile: Don't create build directory for additional targets ......................................................................
Makefile: Don't create build directory for additional targets
BUG=b:112267918 TEST=Ran make help and verified build directory is no longer created
Change-Id: I4bb066b5c3b3d9a7bb19291ef928042b90f10440 Signed-off-by: Raul E Rangel rrangel@chromium.org Reviewed-on: https://review.coreboot.org/c/coreboot/+/34525 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Patrick Georgi pgeorgi@google.com --- M Makefile 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified Patrick Georgi: Looks good to me, approved
diff --git a/Makefile b/Makefile index dfc70e0..317a8eb 100644 --- a/Makefile +++ b/Makefile @@ -124,7 +124,7 @@ ifneq ($(filter %config %clean cross% clang iasl gnumake lint% help% what-jenkins-does,$(MAKECMDGOALS)),) NOCOMPILE:=1 endif -ifeq ($(MAKECMDGOALS), %clean) +ifneq ($(filter %clean lint% help% what-jenkins-does,$(MAKECMDGOALS)),) NOMKDIR:=1 endif endif