diff options
author | ryoon <ryoon@pkgsrc.org> | 2012-04-08 20:56:23 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2012-04-08 20:56:23 +0000 |
commit | ff979e53f6eb8446bf08926d9c79ae872ee7bb7b (patch) | |
tree | af8c0e262aaeec08595dac9c90a1b624880fb5c3 /mk/tools | |
parent | 895d42a362d8351788bd994fe3f857ca91cd51eb (diff) | |
download | pkgsrc-ff979e53f6eb8446bf08926d9c79ae872ee7bb7b.tar.gz |
Set TOOLS_PLATFORM.xzcat.
On FreeBSD 9.0, there is /usr/bin/xzcat.
Diffstat (limited to 'mk/tools')
-rw-r--r-- | mk/tools/tools.FreeBSD.mk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mk/tools/tools.FreeBSD.mk b/mk/tools/tools.FreeBSD.mk index c021e8eb0e0..67caa8dc156 100644 --- a/mk/tools/tools.FreeBSD.mk +++ b/mk/tools/tools.FreeBSD.mk @@ -1,4 +1,4 @@ -# $NetBSD: tools.FreeBSD.mk,v 1.34 2011/12/14 03:28:54 joerg Exp $ +# $NetBSD: tools.FreeBSD.mk,v 1.35 2012/04/08 20:56:23 ryoon Exp $ # # System-supplied tools for the FreeBSD operating system. @@ -84,4 +84,7 @@ TOOLS_PLATFORM.true?= true # shell builtin TOOLS_PLATFORM.tsort?= /usr/bin/tsort TOOLS_PLATFORM.wc?= /usr/bin/wc TOOLS_PLATFORM.xargs?= /usr/bin/xargs +.if exists(/usr/bin/xzcat) +TOOLS_PLATFORM.xzcat?= /usr/bin/xzcat +.endif TOOLS_PLATFORM.yacc?= /usr/bin/yacc |