diff options
author | joerg <joerg@pkgsrc.org> | 2007-08-30 21:29:21 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2007-08-30 21:29:21 +0000 |
commit | 74ee8323d681785efce4674a990f3f9f8d396ff6 (patch) | |
tree | d41b3e59c51f639cb2411cc4b93697d570c8e908 /mk | |
parent | f12116c31218da988abd4c4c21c393690f9729c8 (diff) | |
download | pkgsrc-74ee8323d681785efce4674a990f3f9f8d396ff6.tar.gz |
Newer AIX has bzip2 and bzcat pre-installed.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/tools/tools.AIX.mk | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/mk/tools/tools.AIX.mk b/mk/tools/tools.AIX.mk index 31d0ff6e6f7..8fdfce30cd9 100644 --- a/mk/tools/tools.AIX.mk +++ b/mk/tools/tools.AIX.mk @@ -1,10 +1,16 @@ -# $NetBSD: tools.AIX.mk,v 1.13 2006/10/17 06:08:31 rillig Exp $ +# $NetBSD: tools.AIX.mk,v 1.14 2007/08/30 21:29:21 joerg Exp $ # # System-supplied tools for the AIX operating system. TOOLS_PLATFORM.[?= [ # shell builtin TOOLS_PLATFORM.awk?= /usr/bin/awk TOOLS_PLATFORM.basename?= /usr/bin/basename +.if exists(/usr/bin/bzcat) +TOOLS_PLATFORM.bzcat?= /usr/bin/bzcat +.endif +.if exists(/usr/bin/bzip2) +TOOLS_PLATFORM.bzip2?= /usr/bin/bzip2 +.endif TOOLS_PLATFORM.cat?= /bin/cat TOOLS_PLATFORM.chgrp?= /usr/bin/chgrp TOOLS_PLATFORM.chmod?= /bin/chmod |