From ee915a646f8dfd4608af727bc2789eb084b46fc7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Thu, 30 Aug 2012 09:59:14 +0000 Subject: [PATCH] Include gettext MO files in distribution archives. It's the usual thing to do. Ideally, we'd also compile them as part of build process, at least on Unix, but this is better than nothing. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72400 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- build/tools/create-archive.py | 4 ++++ build/tools/git-make-release | 3 +++ 2 files changed, 7 insertions(+) diff --git a/build/tools/create-archive.py b/build/tools/create-archive.py index 326b5a1..c87eafc 100755 --- a/build/tools/create-archive.py +++ b/build/tools/create-archive.py @@ -173,6 +173,10 @@ for afile in fileList: # copy include/wx/msw/setup0.h -> include/wx/msw/setup.h mswSetup0 = os.path.join(wxCopyDir, "include","wx","msw","setup0.h") shutil.copy(mswSetup0, mswSetup0.replace("setup0.h", "setup.h")), + +# compile gettext catalogs +print "Compiling gettext catalogs..." +os.system("make -C %s/locale allmo" % wxCopyDir) all = options.compression == "all" diff --git a/build/tools/git-make-release b/build/tools/git-make-release index 7a5e813..c1089a1 100755 --- a/build/tools/git-make-release +++ b/build/tools/git-make-release @@ -54,6 +54,9 @@ find $prefix/include/wx -type f -name setup0.h | while read f; do mv $f ${f%0.h}.h done +# Compile gettext catalogs. +make -C $prefix/locale allmo + tar cjf $prefix.tar.bz2 $prefix cd $prefix -- 2.7.4