diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-12-19 11:15:41 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-12-19 11:15:41 +0000 |
commit | caf3a14a3cbdb028013078c67fac3dcc03f1a93b (patch) | |
tree | 136a1613928b4f51d605a3c605371184a4d245b0 /include | |
parent | 3e807886d0edd224584a507683ed7cdaea937e5a (diff) | |
download | upstream-caf3a14a3cbdb028013078c67fac3dcc03f1a93b.tar.gz upstream-caf3a14a3cbdb028013078c67fac3dcc03f1a93b.tar.bz2 upstream-caf3a14a3cbdb028013078c67fac3dcc03f1a93b.zip |
image.mk: use cross toolchain cpp for processing dts file instead of relying on the host compiler
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 47937
Diffstat (limited to 'include')
-rw-r--r-- | include/image.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/image.mk b/include/image.mk index 6b2fb1afd8..1522dd72c8 100644 --- a/include/image.mk +++ b/include/image.mk @@ -142,7 +142,7 @@ endef # $(3) extra CPP flags # $(4) extra DTC flags define Image/BuildDTB - $(CPP) -nostdinc -x assembler-with-cpp \ + $(TARGET_CROSS)cpp -nostdinc -x assembler-with-cpp \ -I$(DTS_DIR) \ -I$(DTS_DIR)/include \ -undef -D__DTS__ $(3) \ |