Browse Source

unzip: fix cross-compilation and skip target checks

Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
Signed-off-by: Steven Barth <steven@midlink.org>
lilik-openwrt-22.03
Steven Barth 11 years ago
parent
commit
e61b36871d
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      utils/unzip/Makefile

+ 4
- 1
utils/unzip/Makefile View File

@ -43,12 +43,15 @@ endef
define Build/Configure
endef
TARGET_CFLAGS += -DNO_LCHMOD -DLARGE_FILE_SUPPORT
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR) -f unix/Makefile generic \
$(MAKE) -C $(PKG_BUILD_DIR) -f unix/Makefile unzips \
$(TARGET_CONFIGURE_OPTS) \
prefix="$(PKG_INSTALL_DIR)/usr" \
CFLAGS="$(TARGET_CFLAGS)" \
CF="$(TARGET_CFLAGS) -O $(TARGET_CPPFLAGS) -I. -DUNIX" \
CC="$(TARGET_CC)" \
LD="$(TARGET_CC) $(TARGET_LDFLAGS)" \
install
endef


Loading…
Cancel
Save