$OpenBSD: patch-configure,v 1.1 2008/11/21 17:35:04 jasper Exp $

Fix some stupid egrep(1) misusage causing this function to always
return 1.

--- configure.orig	Thu Nov 13 23:43:03 2008
+++ configure	Thu Nov 13 23:43:08 2008
@@ -24189,7 +24189,7 @@ disabled_plugins=
 # Plugin specific checks
 # ================================================================
 check_plugin_defined() {
-	if echo "$2" | egrep "\b($1)\b" > /dev/null;
+	if echo "$2" | egrep "$1" > /dev/null;
 	then
 		return 1
 	else
