summaryrefslogtreecommitdiffstats
path: root/Makefile.am
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2010-10-18 20:19:45 +0200
committerWerner Koch <wk@gnupg.org>2010-10-18 20:19:45 +0200
commitaa3d02ee5b7570d48d1388399f80fd49b5849844 (patch)
tree4ec9d06328ee519c46f97ffe915569db89011d15 /Makefile.am
parentRe-enabled german translation (diff)
downloadgnupg2-aa3d02ee5b7570d48d1388399f80fd49b5849844.tar.xz
gnupg2-aa3d02ee5b7570d48d1388399f80fd49b5849844.zip
Install the mo files on W32 platforms
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am16
1 files changed, 14 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am
index 1bda6ffde..57764135a 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -22,7 +22,7 @@ ACLOCAL_AMFLAGS = -I m4 -I gl/m4
AUTOMAKE_OPTIONS = dist-bzip2 no-dist-gzip
DISTCHECK_CONFIGURE_FLAGS = --enable-symcryptrun --enable-mailto
-EXTRA_DIST = scripts/config.rpath autogen.sh README.SVN
+EXTRA_DIST = scripts/config.rpath scripts/potomo autogen.sh README.SVN
DISTCLEANFILES = g10defs.h
if BUILD_GPGSM
@@ -93,7 +93,19 @@ dist_doc_DATA = README
dist-hook:
echo "$(VERSION)" > $(distdir)/VERSION
+if HAVE_W32_SYSTEM
+install-data-hook:
+ set -e; \
+ for i in $$($(top_srcdir)/scripts/potomo \
+ --get-linguas $(top_srcdir)/po) ; do \
+ $(MKDIR_P) "$(DESTDIR)$(localedir)/$$i/LC_MESSAGES" || true; \
+ rm -f "$(DESTDIR)$(localedir)/$$i/LC_MESSAGES/gnupg2.mo" \
+ 2>/dev/null || true; \
+ $(top_srcdir)/scripts/potomo $(top_srcdir)/po/$$i.po \
+ "$(DESTDIR)$(localedir)/$$i/LC_MESSAGES/gnupg2.mo" ; \
+ done
+endif
+
stowinstall:
$(MAKE) $(AM_MAKEFLAGS) install prefix=/usr/local/stow/gnupg
-