$OpenBSD: patch-configure,v 1.3 2010/04/22 21:52:47 jasper Exp $

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

--- configure.orig	Mon Mar 29 22:06:50 2010
+++ configure	Thu Apr 22 23:43:22 2010
@@ -13695,7 +13695,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
