openbsd-ports/x11/gnome/gedit-plugins/patches/patch-configure
jasper b865715fa2 - update gedit-plugins to 2.22.5
feedback and ok ajacoutot@
2008-11-21 17:35:04 +00:00

17 lines
502 B
Plaintext

$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