Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorCarlos Garcia Campos <carlosgc@gnome.org>2008-04-17 13:50:09 (GMT)
committer Carlos Garcia Campos <carlosgc@src.gnome.org>2008-04-17 13:50:09 (GMT)
commit266337db6a75c3c7998ff133c34c3b70e40de0ab (patch)
tree29a38b6cb277152d6af1c98c69580531019e762f /configure.ac
parentd9a6805d23745614a4f3c8ed7e66c22cd1b8cfe8 (diff)
Fix libspectre check in configure script. Fixes bug #528549.
2008-04-17 Carlos Garcia Campos <carlosgc@gnome.org> * configure.ac: Fix libspectre check in configure script. Fixes bug #528549. svn path=/trunk/; revision=3009
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 6c7b755..4b0dd84 100644
--- a/configure.ac
+++ b/configure.ac
@@ -252,7 +252,7 @@ AC_ARG_ENABLE(ps,
[AC_HELP_STRING([--disable-ps], [Compile without PostScript backend])],enable_ps=$enableval,enable_ps="yes")
if test "x$enable_ps" = "xyes"; then
- if test "x$have_spectre = xyes"; then
+ if test "x$have_spectre" = "xyes"; then
AC_DEFINE([ENABLE_PS], [1], [Enable support for PostScript files.])
else
enable_ps="no"