summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaolo Bonzini <bonzini@gnu.org>2008-11-30 18:04:24 +0100
committerNicolas Bruguier <nicolas.bruguier@supersonicimagine.fr>2008-11-30 18:04:24 +0100
commit303c708eb4bc02ee4d361579bd7b16454fab9e8d (patch)
treed917e4410e88fc436146eb0e7afce3bb0bc56e31
parentdb8ceeb8f85b975004887bf5b64455189067db64 (diff)
[glitz] Fix CAIRO_CFLAGS glitz include remove.
Fix sed regular expression to avoid bad replace when used a custom prefix install which contains glitz.
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 8459802..5bac880 100644
--- a/configure.in
+++ b/configure.in
@@ -131,7 +131,7 @@ if test $enable_cairogears = yes ; then
dnl Check cairo here, we do not want the -lglitz option.
dnl However, we have to remove -I.../glitz manually.
PKG_CHECK_MODULES(CAIRO, [cairo])
- CAIRO_CFLAGS=`echo " $CAIRO_CFLAGS" | sed 's, -I[[^ ]]*/glitz *,,' `
+ CAIRO_CFLAGS=`echo " $CAIRO_CFLAGS " | sed 's, -I[[^ ]]*/glitz , ,'`
fi
AM_CONDITIONAL(HAVE_LIBPNG, [test "x$enable_png" = xyes])