mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
Fixed check for msgfmt in configure.ac
This commit is contained in:
parent
2517832718
commit
7f0a68f8d6
1 changed files with 1 additions and 1 deletions
|
@ -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])
|
||||
|
|
Loading…
Reference in a new issue