bsdiff: Also pass down TARGET_CPPFLAGS

Fixes build with external toolchains not having STAGING_DIR in their
default search path(s).

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
(cherry picked from commit 562ebe7982)
This commit is contained in:
Florian Fainelli 2017-02-12 13:21:01 -08:00 committed by Jo-Philipp Wich
parent 051a33e7c9
commit 1e3ff02ea5
1 changed files with 2 additions and 2 deletions

View File

@ -40,10 +40,10 @@ endef
define Build/Compile
$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_LDFLAGS) \
$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_CPPFLAGS) $(TARGET_LDFLAGS) \
-o $(PKG_BUILD_DIR)/bsdiff \
$(PKG_BUILD_DIR)/bsdiff.c -lbz2
$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_LDFLAGS) \
$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_CPPFLAGS) $(TARGET_LDFLAGS) \
-o $(PKG_BUILD_DIR)/bspatch \
$(PKG_BUILD_DIR)/bspatch.c -lbz2
endef