diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2013-12-05 15:08:31 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-12-13 09:15:33 -0500 |
commit | a8c075414a48663b0604c22b90883e651c1a053d (patch) | |
tree | 37d456735780f92e5fa05a07b380ce7ac06f77eb /arch/blackfin/config.mk | |
parent | 65947ab4c98b882e2ce68c1970e7e7cf208b40e7 (diff) | |
download | u-boot-a8c075414a48663b0604c22b90883e651c1a053d.tar.gz u-boot-a8c075414a48663b0604c22b90883e651c1a053d.tar.xz u-boot-a8c075414a48663b0604c22b90883e651c1a053d.zip |
Makefile: use two double-quotations as a pair
Some editors such as Emacs can highlight source files.
But their parser algorithm is not perfect.
If you use one double-quotation alone, some editor cannot
handle it nicely and mark source lines as a string by mistake.
It is preferable to use two double-quotations as a pair.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'arch/blackfin/config.mk')
-rw-r--r-- | arch/blackfin/config.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/blackfin/config.mk b/arch/blackfin/config.mk index 35f871662d..73fa79855f 100644 --- a/arch/blackfin/config.mk +++ b/arch/blackfin/config.mk @@ -14,9 +14,9 @@ CONFIG_BFIN_CPU := \ $(shell awk '$$2 == "CONFIG_BFIN_CPU" { print $$3 }' \ $(src)include/configs/$(BOARD).h) else -CONFIG_BFIN_CPU := $(strip $(subst ",,$(CONFIG_BFIN_CPU))) +CONFIG_BFIN_CPU := $(strip $(CONFIG_BFIN_CPU:"%"=%)) endif -CONFIG_BFIN_BOOT_MODE := $(strip $(subst ",,$(CONFIG_BFIN_BOOT_MODE))) +CONFIG_BFIN_BOOT_MODE := $(strip $(CONFIG_BFIN_BOOT_MODE:"%"=%)) PLATFORM_RELFLAGS += -ffixed-P3 -fomit-frame-pointer -mno-fdpic PLATFORM_CPPFLAGS += -DCONFIG_BLACKFIN |