On Thu, Mar 4, 2010 at 3:08 PM, Lasse Tuominen <tuominen.la...@gmail.com> wrote: > On Thu, Mar 4, 2010 at 18:05, Yvon Thoraval <yvon.thora...@gmail.com> wrote: >> 2010/3/4 BH <bewih...@gmail.com> >> >> >> then, doing : >> >> /opt/local/bin/msgmerge --update po/ar.po po/LyX-svn-2.0.0.pot >> .................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................... >> terminé. >> /opt/local/bin/msgmerge: `po/ar.po': No such file or directory >> >> this is the same error as when doing make >> > > In msgmerge seems to be some bug: http://savannah.gnu.org/bugs/index.php?26149 > > I fixed this by changing one line in Makefile.in.in file in > ./lyx-dir/po directory. > > --- Makefile.in.in-old 2010-02-27 19:27:02.000000000 +0200 > +++ Makefile.in.in 2010-03-04 19:41:13.000000000 +0200 > @@ -56,7 +56,7 @@ > XGETTEXT_yes = @XGETTEXT_015@ > XGETTEXT = $(XGETTEXT_$(USE_MSGCTXT)) > MSGMERGE = msgmerge > -MSGMERGE_UPDATE = @MSGMERGE@ --update > +MSGMERGE_UPDATE = @MSGMERGE@ --update --backup=none > MSGINIT = msginit > MSGCONV = msgconv > MSGFILTER = msgfilter > > And after that running ./autogen.sh etc. > > -- > Best Regards > Lasse Tuominen
Yes -- that fixes it for me. (Assuming this is the right fix, can someone check it in?) Thanks. BH