diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-10-20 08:26:39 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-10-20 08:26:39 +0000 |
commit | fff7416664a2c6ff153c7ae446b26f8abb492576 (patch) | |
tree | e0fd6c08f72341eb50e949e3ac3ad2d263cf966e /package/uci/Makefile | |
parent | 762991f315a8163059add01e624232866bfc6c60 (diff) | |
download | upstream-fff7416664a2c6ff153c7ae446b26f8abb492576.tar.gz upstream-fff7416664a2c6ff153c7ae446b26f8abb492576.tar.bz2 upstream-fff7416664a2c6ff153c7ae446b26f8abb492576.zip |
uci: only use $(FPIC) on library parts, saves a few hundred bytes
SVN-Revision: 18092
Diffstat (limited to 'package/uci/Makefile')
-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 e5e5231a55..b86a4fea16 100644 --- a/package/uci/Makefile +++ b/package/uci/Makefile @@ -53,13 +53,13 @@ endef define Build/Configure endef -TARGET_CFLAGS += $(FPIC) UCI_MAKEOPTS = \ $(TARGET_CONFIGURE_OPTS) \ COPTS="$(TARGET_CFLAGS)" \ DEBUG="$(DEBUG)" \ VERSION="$(UCI_VERSION)" \ CPPFLAGS="-I$(PKG_BUILD_DIR) $(TARGET_CPPFLAGS)" \ + FPIC="$(FPIC)" \ OS="Linux" # work around a nasty gcc bug |