diff options
author | tron <tron@pkgsrc.org> | 2007-11-26 16:19:08 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2007-11-26 16:19:08 +0000 |
commit | 0c9a852f5b52ce72b1665e1bc9a4d1104e1dbc9c (patch) | |
tree | 23f4109d6e64842c450b68020402fa3ef631b5c8 /mk/tools | |
parent | 1148a8e744dce088995d3c031cd9f6046344ace0 (diff) | |
download | pkgsrc-0c9a852f5b52ce72b1665e1bc9a4d1104e1dbc9c.tar.gz |
Define "TOOLS_PLATFORM.flex" to "/usr/bin/flex" not "/usr/bin/lex".
The later is shell script which tries to execute "<current-dir>/flex"
under Mac OS X Leopard. This resulted in an endless loop caused by
the buildlink wrappers.
This is backward compatible with at least Mac OS X Tiger where
"/usr/bin/lex" and "/usr/bin/flex" are identical.
Diffstat (limited to 'mk/tools')
-rw-r--r-- | mk/tools/tools.Darwin.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/tools/tools.Darwin.mk b/mk/tools/tools.Darwin.mk index 2b1d4d4f24f..39bcd462c39 100644 --- a/mk/tools/tools.Darwin.mk +++ b/mk/tools/tools.Darwin.mk @@ -1,4 +1,4 @@ -# $NetBSD: tools.Darwin.mk,v 1.35 2007/11/22 16:39:47 tron Exp $ +# $NetBSD: tools.Darwin.mk,v 1.36 2007/11/26 16:19:08 tron Exp $ # # System-supplied tools for the Darwin (Mac OS X) operating system. @@ -35,7 +35,7 @@ TOOLS_PLATFORM.false?= false # shell builtin TOOLS_PLATFORM.fgrep?= /usr/bin/fgrep TOOLS_PLATFORM.file?= /usr/bin/file TOOLS_PLATFORM.find?= /usr/bin/find -TOOLS_PLATFORM.flex?= /usr/bin/lex +TOOLS_PLATFORM.flex?= /usr/bin/flex TOOLS_PLATFORM.gmake?= /usr/bin/gnumake TOOLS_PLATFORM.gm4?= /usr/bin/gm4 TOOLS_PLATFORM.grep?= /usr/bin/grep |