From 9f9a8e169637a3a92720f8ca44e530e4b65902a6 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 5 Dec 2012 12:52:22 +1100 Subject: [PATCH] build: Install .po files for SWAT intl support --- source3/wscript_build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source3/wscript_build b/source3/wscript_build index 6fc0d06..107587d 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -1636,7 +1636,10 @@ bld.SAMBA3_PYTHON('pylibsmb', swat_dir = os.path.join(bld.curdir, '../swat') swat_files = recursive_dirlist(swat_dir, swat_dir, '*') +swat_msg_dir = os.path.join(bld.curdir, 'po') +swat_msg_files = recursive_dirlist(swat_msg_dir, swat_msg_dir, '*.msg') bld.INSTALL_FILES('${SWATDIR}', swat_files, base_name='../swat') +bld.INSTALL_FILES('${CODEPAGEDIR}', swat_msg_files, base_name='po') ########################## INCLUDES ################################# -- 1.7.11.7