diff options
author | Zheng Bao <fishbaozi@gmail.com> | 2015-11-13 10:42:27 +0800 |
---|---|---|
committer | Zheng Bao <zheng.bao@amd.com> | 2015-11-17 03:23:22 +0100 |
commit | 07648928ebe363be33f2a6b51b91a0c290f7951a (patch) | |
tree | 4ef5fcc2f5ea53322b5e78c5c94e82df7cdf2d21 | |
parent | 0307e0a4990445d32ee637921dab245554a94c3f (diff) |
$(top)/Makefile: Strip the white space in function strip_quotes
Change-Id: I5e8cf2ccd1cd53b863cf8d24353428f3c183b68c
Signed-off-by: Zheng Bao <fishbaozi@gmail.com>
Reviewed-on: http://review.coreboot.org/12434
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -128,7 +128,7 @@ endif include toolchain.inc -strip_quotes = $(subst ",,$(subst \",,$(1))) +strip_quotes = $(strip $(subst ",,$(subst \",,$(1)))) # The primary target needs to be here before we include the # other files |