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

@ -1,3 +1,9 @@
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').
2003-09-27 Alex Roitman <shura@alex.neuro.umn.edu>
* doc/gramps-manual/C/filtref.xml: Manual corrections.
* doc/gramps-manual/C/cmdline.xml: Likewise.

View File

@ -5,7 +5,7 @@ AC_PREREQ(2.57)
AC_INIT(gramps, 0.9.4, gramps-bugs@lists.sourceforge.net)
AC_CONFIG_SRCDIR(src/gramps.py)
AM_INIT_AUTOMAKE(1.6.3)
RELEASE=0.CVS$(head -c 10 ChangeLog | tr -d '-')
RELEASE=0.CVS$(head -c 10 ${srcdir}/ChangeLog | tr -d '-')
VERSIONSTRING=$VERSION
if test x"$RELEASE" != "x"

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