openbsd-ports/x11/gnome/eog-plugins/patches/patch-configure
ajacoutot 8c33b99e58 Update to eog-plugins-2.30.1.
* translations updates
2010-06-22 04:46:58 +00:00

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