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/which/which.mk | |
parent | 859b9137fd6cfb62380691271aec4b06f086f900 (diff) |
- 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/which/which.mk')
-rw-r--r-- | package/which/which.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/which/which.mk b/package/which/which.mk index 1beab7bee..992d076a1 100644 --- a/package/which/which.mk +++ b/package/which/which.mk @@ -7,7 +7,7 @@ WHICH_VER:=2.16 WHICH_SOURCE:=which-$(WHICH_VER).tar.gz WHICH_SITE:=http://www.xs4all.nl/~carlo17/which/ WHICH_DIR:=$(BUILD_DIR)/which-$(WHICH_VER) -WHICH_CAT:=zcat +WHICH_CAT:=$(ZCAT) WHICH_BINARY:=which WHICH_TARGET_BINARY:=bin/which |