[packages] strace: only change CPPFLAGS when building with an external toolchain (see [19770]), fixes a build failure on mips/mipsel and probably others

git-svn-id: svn://svn.openwrt.org/openwrt/packages@20961 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico 2010-04-17 19:06:42 +00:00
parent d90f33ca12
commit dbddc1876e

View File

@ -44,9 +44,9 @@ endef
CONFIGURE_VARS += \
ac_cv_header_linux_netlink_h=yes
# needed when compiling with an external toolchain
TARGET_CFLAGS += \
-I$(LINUX_DIR)/include
ifneq ($(CONFIG_EXTERNAL_TOOLCHAIN),)
TARGET_CPPFLAGS += -I$(LINUX_DIR)/include
endif
MAKE_FLAGS := \
CCOPT="$(TARGET_CFLAGS)"