X-Git-Url: https://git.archive.openwrt.org/?a=blobdiff_plain;f=include%2Fhost-build.mk;h=0502d7682a5c9514cd4e10d84fbdccfbef7375f8;hb=85dc32ec9fd38484f20e0c377c24b4c4ee8bf847;hp=9a5a41317efcb5e649a1fa111ab953a1157cca5a;hpb=65aeed311cbddeb66427150582239ff1623246d9;p=openwrt.git diff --git a/include/host-build.mk b/include/host-build.mk index 9a5a41317e..0502d7682a 100644 --- a/include/host-build.mk +++ b/include/host-build.mk @@ -4,14 +4,13 @@ # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # -ifneq ($(strip $(PKG_CAT)),) - ifeq ($(PKG_CAT),unzip) - UNPACK=unzip -d $(PKG_BUILD_DIR) $(DL_DIR)/$(PKG_SOURCE) - else - UNPACK=$(PKG_CAT) $(DL_DIR)/$(PKG_SOURCE) | tar -C $(PKG_BUILD_DIR)/.. $(TAR_OPTIONS) - - endif + +include $(INCLUDE_DIR)/host.mk +include $(INCLUDE_DIR)/unpack.mk + +ifneq ($(strip $(PKG_UNPACK)),) define Build/Prepare/Default - $(UNPACK) + $(PKG_UNPACK) @if [ -d ./patches ]; then \ $(PATCH) $(PKG_BUILD_DIR) ./patches; \ fi