diff options
| author | Michal Marek <mmarek@suse.cz> | 2014-04-29 06:45:34 -0400 |
|---|---|---|
| committer | Michal Marek <mmarek@suse.cz> | 2014-05-14 16:43:04 -0400 |
| commit | fb916b42f3963dd32ed3c514afcc575d9e19db93 (patch) | |
| tree | b75e08166ac16621612c4bf64f4384a56f83a7dc | |
| parent | 5180d5f483486859c0a822c9020ec459f4504b59 (diff) | |
firmware: Use $(quote) in the Makefile
The literal " confuses syntax highlighting in vim.
Cc: David Woodhouse <dwmw2@infradead.org>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Michal Marek <mmarek@suse.cz>
| -rw-r--r-- | firmware/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/Makefile b/firmware/Makefile index 6af62cf6e285..5747417069ca 100644 --- a/firmware/Makefile +++ b/firmware/Makefile | |||
| @@ -4,10 +4,10 @@ | |||
| 4 | 4 | ||
| 5 | # Create $(fwabs) from $(CONFIG_EXTRA_FIRMWARE_DIR) -- if it doesn't have a | 5 | # Create $(fwabs) from $(CONFIG_EXTRA_FIRMWARE_DIR) -- if it doesn't have a |
| 6 | # leading /, it's relative to $(srctree). | 6 | # leading /, it's relative to $(srctree). |
| 7 | fwdir := $(subst ",,$(CONFIG_EXTRA_FIRMWARE_DIR)) | 7 | fwdir := $(subst $(quote),,$(CONFIG_EXTRA_FIRMWARE_DIR)) |
| 8 | fwabs := $(addprefix $(srctree)/,$(filter-out /%,$(fwdir)))$(filter /%,$(fwdir)) | 8 | fwabs := $(addprefix $(srctree)/,$(filter-out /%,$(fwdir)))$(filter /%,$(fwdir)) |
| 9 | 9 | ||
| 10 | fw-external-y := $(subst ",,$(CONFIG_EXTRA_FIRMWARE)) | 10 | fw-external-y := $(subst $(quote),,$(CONFIG_EXTRA_FIRMWARE)) |
| 11 | 11 | ||
| 12 | # There are three cases to care about: | 12 | # There are three cases to care about: |
| 13 | # 1. Building kernel with CONFIG_FIRMWARE_IN_KERNEL=y -- $(fw-shipped-y) should | 13 | # 1. Building kernel with CONFIG_FIRMWARE_IN_KERNEL=y -- $(fw-shipped-y) should |
