diff options
author | Stephen Warren <swarren@nvidia.com> | 2013-07-24 10:09:23 -0700 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-08-02 18:30:11 -0400 |
commit | 32ac4bd9ca6402ea7d07d528d2e550c7ea76e4b3 (patch) | |
tree | 7f29207a61be03ba68acbafcb0278eece6e15995 /dts | |
parent | 065202803d5d747bd3e551e27c61b6f3e60d6d7b (diff) |
dts/Makefile: don't use cpp -P
Recent dtc supports #line directives in the input source code, and even
uses them to generate useful line numbers in any messages it emits. Stop
passing -P to cpp, since there's no need any more.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'dts')
-rw-r--r-- | dts/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dts/Makefile b/dts/Makefile index 5dbf59be2f1..ccd552fa003 100644 --- a/dts/Makefile +++ b/dts/Makefile @@ -35,7 +35,7 @@ all: $(obj).depend $(LIB) DT_BIN := $(obj)dt.dtb $(DT_BIN): $(TOPDIR)/board/$(VENDOR)/dts/$(DEVICE_TREE).dts - $(CPP) -P $(DTS_CPPFLAGS) $< -o $(DT_BIN).dts.tmp + $(CPP) $(DTS_CPPFLAGS) $< -o $(DT_BIN).dts.tmp $(DTC) $(DTC_FLAGS) -O dtb -o ${DT_BIN} $(DT_BIN).dts.tmp process_lds = \ |