diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-08-22 10:06:25 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-08-22 10:06:25 +0000 |
commit | 514cdef23fb77f10752039c1a21aab20f0575930 (patch) | |
tree | 9ea1dfaf42897d71949cfa919c4651950e524b9f /target/device/AMD | |
parent | 956d3eb78bfa798cee3071917aa18517f496078c (diff) | |
download | buildroot-novena-514cdef23fb77f10752039c1a21aab20f0575930.tar.gz buildroot-novena-514cdef23fb77f10752039c1a21aab20f0575930.zip |
- use the BZCAT/ZCAT as configured by the user
Diffstat (limited to 'target/device/AMD')
-rw-r--r-- | target/device/AMD/DBAu1500/linux26.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/device/AMD/DBAu1500/linux26.mk b/target/device/AMD/DBAu1500/linux26.mk index 347efd8bc..7a457c7b0 100644 --- a/target/device/AMD/DBAu1500/linux26.mk +++ b/target/device/AMD/DBAu1500/linux26.mk @@ -43,7 +43,7 @@ $(DL_DIR)/$(LINUX26_SOURCE): $(LINUX26_DIR)/.unpacked: $(DL_DIR)/$(LINUX26_SOURCE) rm -rf $(LINUX26_DIR) - bzcat $(DL_DIR)/$(LINUX26_SOURCE) | tar -C $(BUILD_DIR) -xvf - + $(BZCAT) $(DL_DIR)/$(LINUX26_SOURCE) | tar -C $(BUILD_DIR) -xvf - ifneq ($(DOWNLOAD_LINUX26_VERSION),$(LINUX26_VERSION)) # Rename the dir from the downloaded version to the AFTER patch version mv -f $(BUILD_DIR)/linux-$(DOWNLOAD_LINUX26_VERSION) $(BUILD_DIR)/linux-$(LINUX26_VERSION) |