mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-23 22:52:28 +02:00
package/zlib: fix Darwin compile failure (closes #7963)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23085 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
3a333a2f4c
commit
bee5c04364
@ -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)" \
|
||||
|
Loading…
Reference in New Issue
Block a user