diff options
author | Alexandros C. Couloumbis <alex@ozo.com> | 2010-09-19 05:33:18 +0000 |
---|---|---|
committer | Alexandros C. Couloumbis <alex@ozo.com> | 2010-09-19 05:33:18 +0000 |
commit | aea8213bdd9dddea0448bf9206f2db513e0a64cd (patch) | |
tree | d9198a4fa6bb08c9b3a34f7ce1e6aa0cf89ae019 /package/zlib | |
parent | 1460115836fe21d61c7357ff69498aae34bd0e9d (diff) | |
download | upstream-aea8213bdd9dddea0448bf9206f2db513e0a64cd.tar.gz upstream-aea8213bdd9dddea0448bf9206f2db513e0a64cd.tar.bz2 upstream-aea8213bdd9dddea0448bf9206f2db513e0a64cd.zip |
package/zlib: fix Darwin compile failure (closes #7963)
SVN-Revision: 23085
Diffstat (limited to 'package/zlib')
-rw-r--r-- | package/zlib/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/package/zlib/Makefile b/package/zlib/Makefile index 4eef6a1c96..5cea85fc85 100644 --- a/package/zlib/Makefile +++ b/package/zlib/Makefile @@ -31,19 +31,18 @@ define Build/Configure $(TARGET_CONFIGURE_OPTS) \ LDSHARED="$(TARGET_CC) -shared -Wl,-soname,libz.so.1" \ CFLAGS="$(TARGET_CFLAGS) $(FPIC)" \ - UNAME_S="Linux" \ ./configure \ --prefix=/usr \ --shared \ + --uname=Linux \ ); endef define Build/Compile $(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \ $(TARGET_CONFIGURE_OPTS) \ - LDSHARED="$(TARGET_CROSS)ld -shared" \ - CFLAGS="$(TARGET_CFLAGS) $(FPIC)" \ - libz.a + CFLAGS="$(TARGET_CFLAGS)" \ + libz.a libz.so.$(PKG_VERSION) mkdir -p $(PKG_INSTALL_DIR) $(MAKE) -C $(PKG_BUILD_DIR) \ DESTDIR="$(PKG_INSTALL_DIR)" \ |