X-Git-Url: https://git.archive.openwrt.org/?a=blobdiff_plain;f=include%2Funpack.mk;fp=include%2Funpack.mk;h=e2810944e83a0ef22e0230833acff7cdaaee0e6b;hb=05c2bdffe4a0fa8a8b8debbe6941af46715eda64;hp=ae8cdecb271ef1e760df78e365209a4cf4439c00;hpb=9cbba08f01e6cbe03b3c03dd14c16ade5c75fe7e;p=openwrt.git diff --git a/include/unpack.mk b/include/unpack.mk index ae8cdecb27..e2810944e8 100644 --- a/include/unpack.mk +++ b/include/unpack.mk @@ -16,7 +16,8 @@ UNZIP_CMD=unzip -d $(1)/.. $(DL_DIR)/$(PKG_SOURCE) ifeq ($(PKG_SOURCE),) PKG_UNPACK ?= true -endif +else + ifeq ($(strip $(UNPACK_CMD)),) ifeq ($(strip $(PKG_CAT)),) # try to autodetect file type @@ -64,9 +65,13 @@ ifeq ($(strip $(UNPACK_CMD)),) CRLF_CMD := endif endif + ifdef PKG_BUILD_DIR PKG_UNPACK := $(call UNPACK_CMD,$(PKG_BUILD_DIR)) $(call CRLF_CMD,$(PKG_BUILD_DIR)) endif ifdef HOST_BUILD_DIR HOST_UNPACK := $(call UNPACK_CMD,$(HOST_BUILD_DIR)) $(call CRLF_CMD,$(HOST_BUILD_DIR)) endif + +endif # PKG_SOURCE +