diff options
author | Florian Fainelli <florian@openwrt.org> | 2009-07-25 21:49:48 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2009-07-25 21:49:48 +0000 |
commit | f8f734eecef6c9827319ebceca5a1fcbfb800a55 (patch) | |
tree | 21831633718c3d959b26dacd1f3a9fff99fc8b87 | |
parent | 11e1304ca0d2be464d881fca375f22deafd52536 (diff) | |
download | upstream-f8f734eecef6c9827319ebceca5a1fcbfb800a55.tar.gz upstream-f8f734eecef6c9827319ebceca5a1fcbfb800a55.tar.bz2 upstream-f8f734eecef6c9827319ebceca5a1fcbfb800a55.zip |
remove CFLAGS_LARGEFILE, not defined anywhere (#4856)
SVN-Revision: 16984
-rw-r--r-- | package/zlib/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/zlib/Makefile b/package/zlib/Makefile index 97073a10b1..8c7f9f9441 100644 --- a/package/zlib/Makefile +++ b/package/zlib/Makefile @@ -28,7 +28,7 @@ define Build/Configure (cd $(PKG_BUILD_DIR); \ $(TARGET_CONFIGURE_OPTS) \ LDSHARED="$(TARGET_CC) -shared -Wl,-soname,libz.so.1" \ - CFLAGS="$(TARGET_CFLAGS) $(FPIC) $(CFLAGS_LARGEFILE)" \ + CFLAGS="$(TARGET_CFLAGS) $(FPIC)" \ UNAME_S="Linux" \ ./configure \ --prefix=/usr \ @@ -39,7 +39,7 @@ endef define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR) \ $(TARGET_CONFIGURE_OPTS) \ - CFLAGS="$(TARGET_CFLAGS) -fPIC $(CFLAGS_LARGEFILE)" \ + CFLAGS="$(TARGET_CFLAGS) -fPIC" \ libz.a libz.so mkdir -p $(PKG_INSTALL_DIR) $(MAKE) -C $(PKG_BUILD_DIR) \ |