diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-12-05 12:52:22 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-12-06 13:28:46 +1100 |
commit | 171c63c3c45743f215ad360f928d9506951ddcd8 (patch) | |
tree | e70d6907b6c52004b76fc1df7550b2a8921f87b4 | |
parent | 631654ae114ae909228a60de13286922d383f2bb (diff) | |
download | samba-171c63c3c45743f215ad360f928d9506951ddcd8.tar.gz samba-171c63c3c45743f215ad360f928d9506951ddcd8.tar.bz2 samba-171c63c3c45743f215ad360f928d9506951ddcd8.zip |
build: Install .po files for SWAT intl support
-rwxr-xr-x | source3/wscript_build | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/wscript_build b/source3/wscript_build index 6fc0d0666e..107587d0bc 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 ################################# |