diff options
author | jperkin <jperkin@pkgsrc.org> | 2022-11-22 13:18:59 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2022-11-22 13:18:59 +0000 |
commit | 27c009dcf549ce4dcc99d6630f8be274b7194ea6 (patch) | |
tree | 46562fd56c81eb344d7a6a8c5676d05c155199db /mk/tools | |
parent | 082740a3e710ae53969107c8b2d1155ce3eac51f (diff) | |
download | pkgsrc-27c009dcf549ce4dcc99d6630f8be274b7194ea6.tar.gz |
mk/tools: Don't ever use GNU false instead of builtin.
Diffstat (limited to 'mk/tools')
-rw-r--r-- | mk/tools/tools.SunOS.mk | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/mk/tools/tools.SunOS.mk b/mk/tools/tools.SunOS.mk index 4daf536cbbc..26d5b2a902b 100644 --- a/mk/tools/tools.SunOS.mk +++ b/mk/tools/tools.SunOS.mk @@ -1,4 +1,4 @@ -# $NetBSD: tools.SunOS.mk,v 1.55 2022/11/22 09:15:51 jperkin Exp $ +# $NetBSD: tools.SunOS.mk,v 1.56 2022/11/22 13:18:59 jperkin Exp $ # # System-supplied tools for the Solaris and illumos operating systems. # @@ -71,11 +71,7 @@ TOOLS_PLATFORM.fgrep?= /usr/xpg4/bin/grep -F .endif TOOLS_PLATFORM.env?= /usr/bin/env TOOLS_PLATFORM.expr?= /usr/xpg4/bin/expr -.if exists(/usr/gnu/bin/false) -TOOLS_PLATFORM.false?= /usr/gnu/bin/false -.else TOOLS_PLATFORM.false?= false # shell builtin -.endif TOOLS_PLATFORM.file?= /usr/bin/file .if exists(/usr/gnu/bin/find) TOOLS_PLATFORM.find?= /usr/gnu/bin/find |