diff options
author | Kyle Evans <kevans@FreeBSD.org> | 2020-12-08 14:05:25 +0000 |
---|---|---|
committer | Kyle Evans <kevans@FreeBSD.org> | 2020-12-08 14:05:25 +0000 |
commit | b82a9ec5f53e79b3ab5ea8d5a3666961c0a5e050 (patch) | |
tree | 98ffe29d7564ef65f778f2ac254b16acbdab3655 | |
parent | 00107a56e597aa029756d1a83321a06e5fc98c23 (diff) | |
download | src-b82a9ec5f53e.tar.gz src-b82a9ec5f53e.zip |
src.opts.mk: switch to bsdgrep as /usr/bin/grep
This has been years in the making, and we all knew it was bound to happen
some day. Switch to the BSDL grep implementation now that it's been a
little more thoroughly tested and theoretically supports all of the
extensions that gnugrep in base had with our libregex(3).
Folks shouldn't really notice much from this update; bsdgrep is slower than
gnugrep, but this is currently the price to pay for fewer bugs. Those
dissatisfied with the speed of grep and in need of a faster implementation
should check out what textproc/ripgrep and textproc/the_silver_searcher
can do for them.
I have some WIP to make bsdgrep faster, but do not consider it a blocker
when compared to the pros of switching now (aforementioned bugs, licensing).
PR: 228798 (exp-run)
PR: 128645, 156704, 166842, 166862, 180937, 193835, 201650
PR: 232565, 242308, 246000, 251081, 191086, 194397
Relnotes: yes, please
Notes
Notes:
svn path=/head/; revision=368439
-rw-r--r-- | share/mk/src.opts.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/mk/src.opts.mk b/share/mk/src.opts.mk index 5a8d51d5a7f3..c42a09883972 100644 --- a/share/mk/src.opts.mk +++ b/share/mk/src.opts.mk @@ -68,6 +68,7 @@ __DEFAULT_YES_OPTIONS = \ BOOTPARAMD \ BOOTPD \ BSD_CPIO \ + BSD_GREP \ BSDINSTALL \ BSNMP \ BZIP2 \ @@ -203,7 +204,6 @@ __DEFAULT_YES_OPTIONS = \ __DEFAULT_NO_OPTIONS = \ BEARSSL \ BHYVE_SNAPSHOT \ - BSD_GREP \ CLANG_EXTRAS \ CLANG_FORMAT \ DTRACE_TESTS \ |