From 0fc8fa00eb371aef93488188e0633e3e54e7364e Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Fri, 10 Apr 2009 18:36:31 +1200 Subject: [PATCH] Regression fix: test for .po properly. Only skip translation attempt if the .po are NOT available. --- errors/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/errors/Makefile.am b/errors/Makefile.am index ea57fcaeb6..5181b2a6e3 100644 --- a/errors/Makefile.am +++ b/errors/Makefile.am @@ -147,7 +147,7 @@ dist-hook: translate cp -p $(srcdir)/errorpage.css $(distdir)/errorpage.css translate: - @if test -f $(top_srcdir)/errors/en.po; then \ + @if ! test -f $(top_srcdir)/errors/en.po; then \ echo "Translation is not currently possible."; \ exit 0; \ fi; \ -- 2.47.3