summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2013-12-22 23:06:08 +0000
committerTim-Philipp Müller <tim@centricular.com>2013-12-22 23:06:08 +0000
commitf7bc1c3ab88024eb8b8e60f1af18fbcabcd83efe (patch)
treeb4efc5b8f36750b879256d631b28a3e4d0dd2028 /m4
parentd48bed31ff6502de03a12ba226685608d3a3344e (diff)
gst-gettext.m4: check for po/Makevars instead of po
There might be some stray po/ without po/Makevars in some of the fringe modules.
Diffstat (limited to 'm4')
-rw-r--r--m4/gst-gettext.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/gst-gettext.m4 b/m4/gst-gettext.m4
index 9dd658e..df817eb 100644
--- a/m4/gst-gettext.m4
+++ b/m4/gst-gettext.m4
@@ -15,7 +15,7 @@ AC_DEFUN([AG_GST_GETTEXT],
[gettext package name])
dnl make sure po/Makevars is kept in sync with GETTEXT_PACKAGE
- if test -d "${srcdir}/po"; then
+ if test -e "${srcdir}/po/Makevars"; then
if ! grep -e "$1" "${srcdir}/po/Makevars"; then
AC_MSG_ERROR([DOMAIN in po/Makevars does not match GETTEXT_PACKAGE $1])
fi