8c33b99e58
* translations updates
17 lines
436 B
Plaintext
17 lines
436 B
Plaintext
$OpenBSD: patch-configure,v 1.3 2010/06/22 04:46:58 ajacoutot Exp $
|
|
|
|
Fix some stupid egrep(1) misusage causing this function to always
|
|
return 1.
|
|
|
|
--- configure.orig Mon Jun 21 22:52:02 2010
|
|
+++ configure Tue Jun 22 06:38:56 2010
|
|
@@ -13737,7 +13737,7 @@ disabled_plugins=
|
|
# *******************
|
|
|
|
check_plugin_defined() {
|
|
- if echo "$2" | egrep "\b($1)\b" > /dev/null;
|
|
+ if echo "$2" | egrep "$1" > /dev/null;
|
|
then
|
|
return 1
|
|
else
|