diff options
author | Nicolas Thill <nico@openwrt.org> | 2009-02-24 00:08:08 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2009-02-24 00:08:08 +0000 |
commit | 21d7852de0baa1bb6b466a887d227e243df593ee (patch) | |
tree | 3f7b5cda53614c4d991f4cadfc607c18dfcf02d1 /package/uci | |
parent | e80fb36f396323d88d8bdf192d93dceeb6be2dbd (diff) | |
download | upstream-21d7852de0baa1bb6b466a887d227e243df593ee.tar.gz upstream-21d7852de0baa1bb6b466a887d227e243df593ee.tar.bz2 upstream-21d7852de0baa1bb6b466a887d227e243df593ee.zip |
replace some -I & -L flags with $(TARGET_CPPFLAGS) & $(TARGET_LDFLAGS) when appropriate
SVN-Revision: 14651
Diffstat (limited to 'package/uci')
-rw-r--r-- | package/uci/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/uci/Makefile b/package/uci/Makefile index 49c3f42613..6d1f7d95e9 100644 --- a/package/uci/Makefile +++ b/package/uci/Makefile @@ -53,7 +53,7 @@ UCI_MAKEOPTS = \ COPTS="$(TARGET_CFLAGS)" \ DEBUG="$(DEBUG)" \ VERSION="$(UCI_VERSION)" \ - CPPFLAGS="-I$(PKG_BUILD_DIR) -I$(STAGING_DIR)/usr/include" \ + CPPFLAGS="-I$(PKG_BUILD_DIR) $(TARGET_CPPFLAGS)" \ OS="Linux" # work around a nasty gcc bug |