summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorreed <reed>2007-03-15 23:11:12 +0000
committerreed <reed>2007-03-15 23:11:12 +0000
commit0eb38d82a48e7c5ee0b84fd7ffd0eb7f53cfb89d (patch)
tree7f0aad45220cc3f6d18b377f8f30f5d29a764f90 /mk
parent2dfc2ee1c63c4e21433f0825054ff6c67e7c89a4 (diff)
downloadpkgsrc-0eb38d82a48e7c5ee0b84fd7ffd0eb7f53cfb89d.tar.gz
Check for /bin/bzcat. Noticed on Ubuntu Linux over a week ago.
(Could check for /bin/bzip2 also, but I didn't need that.)
Diffstat (limited to 'mk')
-rw-r--r--mk/tools/tools.Linux.mk4
1 files changed, 3 insertions, 1 deletions
diff --git a/mk/tools/tools.Linux.mk b/mk/tools/tools.Linux.mk
index 50d649e8056..b79eb8ddab3 100644
--- a/mk/tools/tools.Linux.mk
+++ b/mk/tools/tools.Linux.mk
@@ -1,4 +1,4 @@
-# $NetBSD: tools.Linux.mk,v 1.38 2007/01/25 21:34:54 rpaulo Exp $
+# $NetBSD: tools.Linux.mk,v 1.39 2007/03/15 23:11:12 reed Exp $
#
# System-supplied tools for the Linux operating system.
@@ -16,6 +16,8 @@ TOOLS_PLATFORM.bison-yacc?= /usr/bin/bison -y
.endif
.if exists(/usr/bin/bzcat)
TOOLS_PLATFORM.bzcat?= /usr/bin/bzcat
+.elif exists(/bin/bzcat)
+TOOLS_PLATFORM.bzcat?= /bin/bzcat
.elif exists(/usr/bin/bzip2)
TOOLS_PLATFORM.bzcat?= /usr/bin/bzip2 -cd
.endif