diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-10-01 15:17:52 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-10-01 15:17:52 +0000 |
commit | 6342c83201d5fd2acef0f3193f53b19f74b14c73 (patch) | |
tree | 8653e11ddecfde69a6545825d0cc5058e0906e9c /package/iostat/iostat.mk | |
parent | 859b9137fd6cfb62380691271aec4b06f086f900 (diff) | |
download | buildroot-novena-6342c83201d5fd2acef0f3193f53b19f74b14c73.tar.gz buildroot-novena-6342c83201d5fd2acef0f3193f53b19f74b14c73.zip |
- use $(ZCAT) as configured by the user instead of hardcoded 'zcat' that may not exist; Closes #971
Silly, unchecked sed -i -e "/[^b]zcat/s/zcat/\$\(ZCAT\)/g" $(svngrep "[^b]zcat" * -rl | grep -v Config.in)
Diffstat (limited to 'package/iostat/iostat.mk')
-rw-r--r-- | package/iostat/iostat.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/iostat/iostat.mk b/package/iostat/iostat.mk index 0c6042c37..d1e9c4a7d 100644 --- a/package/iostat/iostat.mk +++ b/package/iostat/iostat.mk @@ -16,7 +16,7 @@ $(DL_DIR)/$(IOSTAT_SOURCE): iostat-source: $(DL_DIR)/$(IOSTAT_SOURCE) $(IOSTAT_DIR)/.unpacked: $(DL_DIR)/$(IOSTAT_SOURCE) - zcat $(DL_DIR)/$(IOSTAT_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) - + $(ZCAT) $(DL_DIR)/$(IOSTAT_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) - toolchain/patch-kernel.sh $(IOSTAT_DIR) package/iostat/ iostat\*.patch touch $(IOSTAT_DIR)/.unpacked |