Skip to content
Snippets Groups Projects
Commit e8b6104d authored by Felix Fietkau's avatar Felix Fietkau
Browse files

allow packages to override PKG_UNPACK, HOST_UNPACK

SVN-Revision: 14659
parent 2242545e
No related branches found
No related tags found
No related merge requests found
...@@ -67,10 +67,10 @@ ifeq ($(strip $(UNPACK_CMD)),) ...@@ -67,10 +67,10 @@ ifeq ($(strip $(UNPACK_CMD)),)
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 endif # PKG_SOURCE
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment