$OpenBSD: patch-configure,v 1.2 2009/10/11 18:13:37 jasper Exp $

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

--- configure.orig	Sun Oct 11 19:58:33 2009
+++ configure	Sun Oct 11 19:58:57 2009
@@ -15690,7 +15690,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
