summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2005-04-27 15:59:57 +0000
committerjlam <jlam@pkgsrc.org>2005-04-27 15:59:57 +0000
commit012e927eed82568daf4af5debcb376a2a56b50dd (patch)
treef1def9f0285176ea9dddca5f3d2ce88877286612 /mk
parent5d6f8ffb9cdf2d423feb553e2514871205c07220 (diff)
downloadpkgsrc-012e927eed82568daf4af5debcb376a2a56b50dd.tar.gz
Note lex if it's present on the system.
Diffstat (limited to 'mk')
-rw-r--r--mk/tools/tools.Linux.mk5
1 files changed, 4 insertions, 1 deletions
diff --git a/mk/tools/tools.Linux.mk b/mk/tools/tools.Linux.mk
index 80991e7054c..37334696928 100644
--- a/mk/tools/tools.Linux.mk
+++ b/mk/tools/tools.Linux.mk
@@ -1,4 +1,4 @@
-# $NetBSD: tools.Linux.mk,v 1.2 2005/04/27 15:36:26 jlam Exp $
+# $NetBSD: tools.Linux.mk,v 1.3 2005/04/27 15:59:57 jlam Exp $
#
# System-supplied tools for the Linux operating system.
@@ -82,6 +82,9 @@ PLATFORM_TOOL.id?= /bin/id
.elif exists(/usr/bin/id)
PLATFORM_TOOL.id?= /usr/bin/id
.endif
+.if exists(/usr/bin/lex)
+PLATFORM_TOOL.lex?= /usr/bin/lex
+.endif
PLATFORM_TOOL.ln?= /bin/ln
PLATFORM_TOOL.ls?= /bin/ls
PLATFORM_TOOL.m4?= ${PLATFORM_TOOL.gm4}