On Thu, Mar 4, 2010 at 18:05, Yvon Thoraval <[email protected]> wrote: > 2010/3/4 BH <[email protected]> > > > 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
