mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 04:26:16 +02:00
[include] support unpacking of .tar.xz archives, no prereq on xzcat for now
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22517 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
8681f22fad
commit
13321eba53
@ -32,7 +32,11 @@ ifeq ($(strip $(UNPACK_CMD)),)
|
|||||||
EXT:=$(call ext,$(PKG_SOURCE:.$(EXT)=))
|
EXT:=$(call ext,$(PKG_SOURCE:.$(EXT)=))
|
||||||
DECOMPRESS_CMD:=bzcat $(DL_DIR)/$(PKG_SOURCE) |
|
DECOMPRESS_CMD:=bzcat $(DL_DIR)/$(PKG_SOURCE) |
|
||||||
endif
|
endif
|
||||||
ifeq ($(filter tgz tbz tbz2,$(EXT1)),$(EXT1))
|
ifeq ($(filter xz txz,$(EXT)),$(EXT))
|
||||||
|
EXT:=$(call ext,$(PKG_SOURCE:.$(EXT)=))
|
||||||
|
DECOMPRESS_CMD:=xzcat $(DL_DIR)/$(PKG_SOURCE) |
|
||||||
|
endif
|
||||||
|
ifeq ($(filter tgz tbz tbz2 txz,$(EXT1)),$(EXT1))
|
||||||
EXT:=tar
|
EXT:=tar
|
||||||
endif
|
endif
|
||||||
DECOMPRESS_CMD ?= cat $(DL_DIR)/$(PKG_SOURCE) |
|
DECOMPRESS_CMD ?= cat $(DL_DIR)/$(PKG_SOURCE) |
|
||||||
|
Loading…
Reference in New Issue
Block a user