diff options
author | jperkin <jperkin@pkgsrc.org> | 2013-07-09 15:22:31 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2013-07-09 15:22:31 +0000 |
commit | 240936b688a865d8ed5dae30c6a701f2ba56df8a (patch) | |
tree | 78fba38621fc0b619cad941370fb32d559efabbe /mk | |
parent | d36d3c941783ec4f52c73cc4a2d31fde48999749 (diff) | |
download | pkgsrc-240936b688a865d8ed5dae30c6a701f2ba56df8a.tar.gz |
Allow the system bison to be used. The comment that it was too old is
from 2006 and the OSX bison has been upgraded long since then. In any
case, if the bison is too old, the BISON_REQD check will ensure that a
working version is pulled in if necessary.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/tools/tools.Darwin.mk | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/mk/tools/tools.Darwin.mk b/mk/tools/tools.Darwin.mk index 932a1d5912e..a21c6891cf1 100644 --- a/mk/tools/tools.Darwin.mk +++ b/mk/tools/tools.Darwin.mk @@ -1,4 +1,4 @@ -# $NetBSD: tools.Darwin.mk,v 1.46 2012/07/27 14:38:26 jperkin Exp $ +# $NetBSD: tools.Darwin.mk,v 1.47 2013/07/09 15:22:31 jperkin Exp $ # # System-supplied tools for the Darwin (Mac OS X) operating system. @@ -6,9 +6,8 @@ TOOLS_PLATFORM.[?= [ # shell builtin TOOLS_PLATFORM.awk?= /usr/bin/awk TOOLS_PLATFORM.basename?= /usr/bin/basename TOOLS_PLATFORM.bash?= /bin/bash -# Darwin's bison is too old (1.28). -# TOOLS_PLATFORM.bison?= /usr/bin/bison -# TOOLS_PLATFORM.bison-yacc?= /usr/bin/bison -y +TOOLS_PLATFORM.bison?= /usr/bin/bison +TOOLS_PLATFORM.bison-yacc?= /usr/bin/bison -y .if exists(/usr/bin/bsdtar) TOOLS_PLATFORM.bsdtar?= /usr/bin/bsdtar .endif |