2003-09-28 Tim Waugh <twaugh@redhat.com>

* configure.in: Fetch ChangeLog from srcdir, not builddir (fixes
        'make distcheck').
        * src/po/Makefile.am: Fetch zh_CN.po from srcdir, not builddir (fixes
        'make distcheck').


svn: r2179
This commit is contained in:
Tim Waugh
2003-09-28 10:50:41 +00:00
parent 0eb8dbbcea
commit a400b7b189
3 changed files with 9 additions and 3 deletions

View File

@@ -24,8 +24,8 @@ SUFFIXES = .po .mo
$(MSGFMT) -v temp.po -o $@
rm temp.po
zh_CN.mo: zh_CN.po
iconv -f GB2312 -t UTF-8 zh_CN.po > temp.po
zh_CN.mo: $(top_srcdir)/src/po/zh_CN.po
iconv --from-code=GB2312 --to-code=UTF-8 $< -o temp.po
$(MSGFMT) -v temp.po -o $@
rm temp.po