pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/mk/tools Check for /bin/bzcat. Noticed on Ubuntu Linux...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/dc76ddd512b5
branches:  trunk
changeset: 526624:dc76ddd512b5
user:      reed <reed%pkgsrc.org@localhost>
date:      Thu Mar 15 23:11:12 2007 +0000

description:
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:

 mk/tools/tools.Linux.mk |  4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diffs (18 lines):

diff -r 4982b92ad989 -r dc76ddd512b5 mk/tools/tools.Linux.mk
--- a/mk/tools/tools.Linux.mk   Thu Mar 15 23:02:26 2007 +0000
+++ b/mk/tools/tools.Linux.mk   Thu Mar 15 23:11:12 2007 +0000
@@ -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 @@
 .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



Home | Main Index | Thread Index | Old Index