only define unpack templates if PKG_SOURCE is set
SVN-Revision: 14623
This commit is contained in:
parent
25d318e815
commit
610e45ae5c
1 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue