aboutsummaryrefslogtreecommitdiffstats
path: root/dts
diff options
context:
space:
mode:
authorMasahiro Yamada2013-12-05 00:08:31 -0600
committerTom Rini2013-12-13 08:15:33 -0600
commita8c075414a48663b0604c22b90883e651c1a053d (patch)
tree37d456735780f92e5fa05a07b380ce7ac06f77eb /dts
parent65947ab4c98b882e2ce68c1970e7e7cf208b40e7 (diff)
downloadu-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 'dts')
-rw-r--r--dts/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/dts/Makefile b/dts/Makefile
index 140c8bc5e7..6c7198f65f 100644
--- a/dts/Makefile
+++ b/dts/Makefile
@@ -10,7 +10,7 @@
10ifeq ($(DEVICE_TREE),) 10ifeq ($(DEVICE_TREE),)
11$(if $(CONFIG_DEFAULT_DEVICE_TREE),,\ 11$(if $(CONFIG_DEFAULT_DEVICE_TREE),,\
12$(error Please define CONFIG_DEFAULT_DEVICE_TREE in your board header file)) 12$(error Please define CONFIG_DEFAULT_DEVICE_TREE in your board header file))
13DEVICE_TREE = $(subst ",,$(CONFIG_DEFAULT_DEVICE_TREE)) 13DEVICE_TREE = $(CONFIG_DEFAULT_DEVICE_TREE:"%"=%)
14endif 14endif
15 15
16DTS_INCDIRS = $(SRCTREE)/board/$(VENDOR)/$(BOARD)/dts 16DTS_INCDIRS = $(SRCTREE)/board/$(VENDOR)/$(BOARD)/dts