diff options
author | Stefano Karapetsas <[email protected]> | 2014-01-01 19:38:07 +0100 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2014-01-01 19:38:07 +0100 |
commit | 0f35dd3f4292f3cdf996c007b06cf8a55619e8c3 (patch) | |
tree | b23d689fd1d204ba3592d4d25f38000ca27bf8b1 | |
parent | dcc9eb6fc0255643791fe37b112f63b17f5d461a (diff) | |
download | pluma-0f35dd3f4292f3cdf996c007b06cf8a55619e8c3.tar.bz2 pluma-0f35dd3f4292f3cdf996c007b06cf8a55619e8c3.tar.xz |
Fix gettext
-rw-r--r-- | configure.ac | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 7e4a20fd..485c574a 100644 --- a/configure.ac +++ b/configure.ac @@ -155,10 +155,11 @@ dnl Gettext stuff. dnl ================================================================ IT_PROG_INTLTOOL([0.40.0]) -AC_SUBST([GETTEXT_PACKAGE], [pluma]) +GETTEXT_PACKAGE=pluma +AC_SUBST([GETTEXT_PACKAGE]) AM_GNU_GETTEXT_VERSION([0.17]) AM_GLIB_GNU_GETTEXT -AC_DEFINE([GETTEXT_PACKAGE],[pluma], [Define to the gettext package name.]) +AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [Define to the Gettext package name]) dnl ================================================================ dnl Use gvfs metadata or the old xml file store. |