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 /docs/buildroot.html | |
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 'docs/buildroot.html')
-rw-r--r-- | docs/buildroot.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/buildroot.html b/docs/buildroot.html index 9f8aea750..5df96f72d 100644 --- a/docs/buildroot.html +++ b/docs/buildroot.html @@ -465,7 +465,7 @@ config BR2_PACKAGE_FOO 14 $(WGET) -P $(DL_DIR) $(FOO_SITE)/$(FOO_SOURCE) 15 16 $(FOO_DIR)/.source: $(DL_DIR)/$(FOO_SOURCE) - 17 zcat $(DL_DIR)/$(FOO_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) - + 17 $(ZCAT) $(DL_DIR)/$(FOO_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) - 18 touch $(FOO_DIR)/.source 19 20 $(FOO_DIR)/.configured: $(FOO_DIR)/.source |