only define unpack templates if PKG_SOURCE is set

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14623 3c298f89-4303-0410-b956-a3cf2f4a3e73
master
Felix Fietkau 2009-02-22 18:27:53 +00:00
parent 661b446611
commit 5513e64b4b
1 changed files with 6 additions and 1 deletions

View File

@ -16,7 +16,8 @@ UNZIP_CMD=unzip -d $(1)/.. $(DL_DIR)/$(PKG_SOURCE)
ifeq ($(PKG_SOURCE),) ifeq ($(PKG_SOURCE),)
PKG_UNPACK ?= true PKG_UNPACK ?= true
endif else
ifeq ($(strip $(UNPACK_CMD)),) ifeq ($(strip $(UNPACK_CMD)),)
ifeq ($(strip $(PKG_CAT)),) ifeq ($(strip $(PKG_CAT)),)
# try to autodetect file type # try to autodetect file type
@ -64,9 +65,13 @@ ifeq ($(strip $(UNPACK_CMD)),)
CRLF_CMD := CRLF_CMD :=
endif endif
endif endif
ifdef PKG_BUILD_DIR ifdef PKG_BUILD_DIR
PKG_UNPACK := $(call UNPACK_CMD,$(PKG_BUILD_DIR)) $(call CRLF_CMD,$(PKG_BUILD_DIR)) PKG_UNPACK := $(call UNPACK_CMD,$(PKG_BUILD_DIR)) $(call CRLF_CMD,$(PKG_BUILD_DIR))
endif endif
ifdef HOST_BUILD_DIR ifdef HOST_BUILD_DIR
HOST_UNPACK := $(call UNPACK_CMD,$(HOST_BUILD_DIR)) $(call CRLF_CMD,$(HOST_BUILD_DIR)) HOST_UNPACK := $(call UNPACK_CMD,$(HOST_BUILD_DIR)) $(call CRLF_CMD,$(HOST_BUILD_DIR))
endif endif
endif # PKG_SOURCE