$OpenBSD: patch-configure,v 1.2 2012/09/27 11:48:23 jasper Exp $

- Don't do bash pattern substitutions.

--- configure.orig	Mon Sep 24 18:18:40 2012
+++ configure	Mon Sep 24 21:10:01 2012
@@ -14849,11 +14849,11 @@ $as_echo "$as_me: WARNING: unsupported compiler flags:
 esac
 
 # strip leading spaces
-MAINTAINER_CFLAGS=${MAINTAINER_CFLAGS#*  }
+MAINTAINER_CFLAGS=`echo ${MAINTAINER_CFLAGS} | sed 's,^[ \t]*,,g'`
 
 
 # strip leading space
-BACKEND_PC_FILES=${BACKEND_PC_FILES#* }
+BACKEND_PC_FILES=`echo ${BACKEND_PC_FILES} | sed 's,^[ \t]*,,g'`
 
 # public dependencies, will fill the Requires: field of clutter.pc
 CLUTTER_REQUIRES="$CLUTTER_BASE_PC_FILES $BACKEND_PC_FILES"
