svn commit: r368333 - head/gnu/lib

Kyle Evans kevans at FreeBSD.org
Fri Dec 4 15:21:12 UTC 2020


Author: kevans
Date: Fri Dec  4 15:21:12 2020
New Revision: 368333
URL: https://svnweb.freebsd.org/changeset/base/368333

Log:
  gnu: don't build libgnuregex for WITH_GNU_GREP_COMPAT
  
  bsdgrep switched over to libregex back in r363823 to fill
  WITH_GNU_GREP_COMPAT, since libgnuregex in base is quite buggy and libregex
  is somewhat functional. Don't build libgnuregex on our account, please.

Modified:
  head/gnu/lib/Makefile

Modified: head/gnu/lib/Makefile
==============================================================================
--- head/gnu/lib/Makefile	Fri Dec  4 15:09:42 2020	(r368332)
+++ head/gnu/lib/Makefile	Fri Dec  4 15:21:12 2020	(r368333)
@@ -6,8 +6,7 @@ SUBDIR=
 SUBDIR.${MK_DIALOG}+=	libdialog
 SUBDIR.${MK_TESTS}+=	tests
 
-.if ${MK_GNU_GREP} != "no" || ${MK_GNU_GREP_COMPAT} != "no" || \
-    ${MK_GDB} != "no"
+.if ${MK_GNU_GREP} != "no" || ${MK_GDB} != "no"
 SUBDIR+=		libregex
 .endif
 


More information about the svn-src-all mailing list