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/wipe/wipe.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/wipe/wipe.mk')
-rw-r--r-- | package/wipe/wipe.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/wipe/wipe.mk b/package/wipe/wipe.mk index 28178bc51..477af50ce 100644 --- a/package/wipe/wipe.mk +++ b/package/wipe/wipe.mk @@ -7,7 +7,7 @@ WIPE_SOURCE:=wipe-0.20.tar.gz #WIPE_PATCH:=wipe_0.2-19.diff.gz WIPE_SITE:=http://abaababa.ouvaton.org/wipe -WIPE_CAT:=zcat +WIPE_CAT:=$(ZCAT) WIPE_DIR:=$(BUILD_DIR)/wipe-0.20 WIPE_BINARY:=wipe WIPE_TARGET_BINARY:=bin/wipe |