X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/65aeed311cbddeb66427150582239ff1623246d9..e484e106e6996cd618538e2c757165e83685e946:/include/host-build.mk diff --git a/include/host-build.mk b/include/host-build.mk index 9a5a41317..0502d7682 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