|
From: Paul M. <pau...@us...> - 2012-10-24 09:47:07
|
Date: Wed, 24 Oct 2012 11:44:14 +0200
… and remove unneeded parentheses.
Found by running `autoupdate`.
---
configure.ac | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/configure.ac b/configure.ac
index cf17e44..a2b004c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -32,7 +32,7 @@ if test x"$enable_actions" = xyes; then
else
AM_PROG_VALAC([0.13.0])
if test x"$VALAC" = x; then
- AC_ERROR([No Vala compiler found but it is required.])
+ AC_MSG_ERROR(No Vala compiler found but it is required.)
fi
fi
LIBFMACTIONS='$(srcdir)/actions/libfmactions.la'
@@ -185,10 +185,10 @@ AS_IF([test x"$enable_exif" != x"no"], [
AC_SUBST(EXIF_CFLAGS)
AC_SUBST(EXIF_LIBS)],
[AS_IF([test x"$enable_exif" = x"auto"], [enable_exif=no], [
- AC_ERROR([Package requirements (libexif) were not met:
+ AC_MSG_ERROR(Package requirements (libexif) were not met:
$EXIF_PKG_ERRORS
-])])])])
+)])])])
#check for gtk-doc
GTK_DOC_CHECK([1.14],[--flavour no-tmpl])
--
1.7.10.4
|