Felix Singer has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/71768 )
Change subject: util/crossgcc/Makefile.inc: Terminate quoted string ......................................................................
util/crossgcc/Makefile.inc: Terminate quoted string
`make help` does not execute successfully and returns an error because a quoted string is unterminated. Fix that.
Change-Id: I643fde1270a154ba523eb21522dcf5f6d4023110 Signed-off-by: Felix Singer felixsinger@posteo.net --- M util/crossgcc/Makefile.inc 1 file changed, 14 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/68/71768/1
diff --git a/util/crossgcc/Makefile.inc b/util/crossgcc/Makefile.inc index 4534aaa..8a4f3c5 100644 --- a/util/crossgcc/Makefile.inc +++ b/util/crossgcc/Makefile.inc @@ -15,7 +15,7 @@ @echo ' ARCH can be "$(subst $(spc),"$(comma) ",$(TOOLCHAIN_ARCHES))"' @echo ' Use "make [target] CPUS=#" to build toolchain using multiple cores' @echo ' Use "make [target] DEST=some/path" to install toolchain there' - @echo ' Use "make [target] BUILDGCC_OPTIONS="-m" to get packages from coreboot mirror" + @echo ' Use "make [target] BUILDGCC_OPTIONS="-m" to get packages from coreboot mirror"' @echo
# For the toolchain builds, use CPUS=x to use multiple processors to build