Name of user not set #1002476 has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/35434 )
Change subject: coreboot/Makefile: display error when spaces in path of toplevel makefile ......................................................................
coreboot/Makefile: display error when spaces in path of toplevel makefile
coreboot toplevel makefile breaks when path to the coreboot directory contains spaces. This patch displays a reasonable message to the user whenever spaces are found within the path to the coreboot direcrory.
Change-Id: Id11deffa01ddca1ff9332d67c7aa33a382b4cdc7 Signed-off-by: Sourabh Kashyap sourabhka@hcl.com --- M Makefile 1 file changed, 3 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/34/35434/1
diff --git a/Makefile b/Makefile index f0a22a5..7911801 100644 --- a/Makefile +++ b/Makefile @@ -30,6 +30,9 @@ ## SUCH DAMAGE. ##
+ifneq ($(words $(CURDIR)),1) + $(error Error: Path to the main directory cannot contain spaces) +endif top := $(CURDIR) src := src srck := $(top)/util/kconfig
Hello Patrick Georgi, Martin Roth,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/35434
to look at the new patch set (#2).
Change subject: coreboot/Makefile: display error when spaces in path of toplevel makefile ......................................................................
coreboot/Makefile: display error when spaces in path of toplevel makefile
coreboot toplevel makefile breaks when path to the coreboot directory contains spaces. This patch displays a reasonable message to the user whenever spaces are found within the path to the coreboot direcrory.
This commit addresses coreboot ticket #179.
Change-Id: Id11deffa01ddca1ff9332d67c7aa33a382b4cdc7 Signed-off-by: Sourabh Kashyap sourabhka@hcl.com --- M Makefile 1 file changed, 3 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/34/35434/2
Patrick Georgi has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/35434 )
Change subject: coreboot/Makefile: display error when spaces in path of toplevel makefile ......................................................................
Patch Set 2: Code-Review+2
Patrick Georgi has submitted this change. ( https://review.coreboot.org/c/coreboot/+/35434 )
Change subject: coreboot/Makefile: display error when spaces in path of toplevel makefile ......................................................................
coreboot/Makefile: display error when spaces in path of toplevel makefile
coreboot toplevel makefile breaks when path to the coreboot directory contains spaces. This patch displays a reasonable message to the user whenever spaces are found within the path to the coreboot direcrory.
This commit addresses coreboot ticket #179.
Change-Id: Id11deffa01ddca1ff9332d67c7aa33a382b4cdc7 Signed-off-by: Sourabh Kashyap sourabhka@hcl.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/35434 Reviewed-by: Patrick Georgi pgeorgi@google.com Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M Makefile 1 file changed, 3 insertions(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Patrick Georgi: Looks good to me, approved
diff --git a/Makefile b/Makefile index 52cba69..35a4b32 100644 --- a/Makefile +++ b/Makefile @@ -30,6 +30,9 @@ ## SUCH DAMAGE. ##
+ifneq ($(words $(CURDIR)),1) + $(error Error: Path to the main directory cannot contain spaces) +endif top := $(CURDIR) src := src srck := $(top)/util/kconfig
Paul Menzel has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/35434 )
Change subject: coreboot/Makefile: display error when spaces in path of toplevel makefile ......................................................................
Patch Set 3:
(1 comment)
Thank you for contributing to coreboot.
https://review.coreboot.org/c/coreboot/+/35434/3//COMMIT_MSG Commit Message:
https://review.coreboot.org/c/coreboot/+/35434/3//COMMIT_MSG@14 PS3, Line 14: This commit addresses coreboot ticket #179. I’d prefer the tag below for future fixes.
Name of user not set #1002476 has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/35434 )
Change subject: coreboot/Makefile: display error when spaces in path of toplevel makefile ......................................................................
Patch Set 3:
(1 comment)
Thanks!
https://review.coreboot.org/c/coreboot/+/35434/3//COMMIT_MSG Commit Message:
https://review.coreboot.org/c/coreboot/+/35434/3//COMMIT_MSG@14 PS3, Line 14: This commit addresses coreboot ticket #179.
I’d prefer the tag below for future fixes. […]
Definitely follow the same from now. Done for CB:35098 as well.