diff options
author | maya <maya@pkgsrc.org> | 2017-06-19 06:25:45 +0000 |
---|---|---|
committer | maya <maya@pkgsrc.org> | 2017-06-19 06:25:45 +0000 |
commit | 2c6c0756fbbab82eba95a3b369e26e82d704aee5 (patch) | |
tree | 33a1f6a7b09d709b0f4b518913cab94a22d4e783 /mk/tools | |
parent | e8ee4c093851d129ab39058d54dbad00c87dff74 (diff) | |
download | pkgsrc-2c6c0756fbbab82eba95a3b369e26e82d704aee5.tar.gz |
Use the fgrep binary explicitly on OSF1
Fixes PR pkg/52312: "Checking for fgrep" causes Fork bomb
From Naruaki Etomi
Diffstat (limited to 'mk/tools')
-rw-r--r-- | mk/tools/tools.OSF1.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/tools/tools.OSF1.mk b/mk/tools/tools.OSF1.mk index 56ce82dfac1..84aed7ce5da 100644 --- a/mk/tools/tools.OSF1.mk +++ b/mk/tools/tools.OSF1.mk @@ -1,4 +1,4 @@ -# $NetBSD: tools.OSF1.mk,v 1.18 2015/02/01 08:48:56 obache Exp $ +# $NetBSD: tools.OSF1.mk,v 1.19 2017/06/19 06:25:45 maya Exp $ # # System-supplied tools for the OSF/1 operating system. # @@ -24,7 +24,7 @@ TOOLS_PLATFORM.env?= /usr/bin/env TOOLS_PLATFORM.expr?= /bin/expr TOOLS_PLATFORM.false?= false # shell builtin TOOLS_PLATFORM.file?= /usr/bin/file -TOOLS_PLATFORM.fgrep?= /usr/bin/grep -F +TOOLS_PLATFORM.fgrep?= /usr/bin/fgrep TOOLS_PLATFORM.find?= /usr/bin/find TOOLS_PLATFORM.grep?= /usr/bin/grep TOOLS_PLATFORM.gunzip?= /usr/bin/gunzip -f |