aboutsummaryrefslogtreecommitdiffhomepage
path: root/configure.ac
diff options
context:
space:
mode:
authorGravatar Siteshwar Vashisht <siteshwar@gmail.com>2013-04-16 15:13:05 +0200
committerGravatar Siteshwar Vashisht <siteshwar@gmail.com>2013-04-16 15:13:05 +0200
commit7f0a68f8d6fe034fbb5aaf86adee6fe5239acad4 (patch)
tree2a2bf1adb4b21a818325921cb69e36857ff9b460 /configure.ac
parent25178327183eaad3f6e0f6ad96f10c4fa91b899a (diff)
Fixed check for msgfmt in configure.ac
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 d961234b..966fd3fd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -172,7 +172,7 @@ AC_ARG_WITH(
AS_IF([test x$local_gettext != xno],
[ AC_CHECK_PROGS( [found_msgfmt], [msgfmt], [no] )
- if test x$found_msgfmt!= xno; then
+ if test x$found_msgfmt != xno; then
AC_DEFINE([USE_GETTEXT],[1],[Perform string translations with gettext])
elif test "x$local_gettext" != "xcheck" ; then
AC_MSG_FAILURE([--with-gettext was given, but the msgfmt program could not be found])