Martin Roth (martinroth@google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/13435
-gerrit
commit 107d0a829fca5f25c559559d5c620e23154b1264 Author: Martin Roth martinroth@google.com Date: Mon Jan 25 15:59:24 2016 -0700
Makefile: Add a comment to fix syntax highlighting
Trivial fix for syntax highlighting in editors. Some get confused by the double quote that doesn't have a close quote and stop highlighting at that point. This comment closes the quote and the paren pair so that they can recover.
Change-Id: I566e8e0f4412009f679ab079f20ae30c2049b502 Signed-off-by: Martin Roth martinroth@google.com --- Makefile | 1 + 1 file changed, 1 insertion(+)
diff --git a/Makefile b/Makefile index c46c4d8..08a5460 100644 --- a/Makefile +++ b/Makefile @@ -153,6 +153,7 @@ endif include toolchain.inc
strip_quotes = $(strip $(subst ",,$(subst ",,$(1)))) +# fix makefile syntax highlighting after strip macro " "))
# The primary target needs to be here before we include the # other files