Jump to content

Weechat: Difference between revisions

25 bytes added ,  6 October 2013
msgmerge and the po files no longer appears to be an issue but the gettext version we have is older so just force it to use the older one.
(msgmerge and the po files no longer appears to be an issue but the gettext version we have is older so just force it to use the older one.)
Line 17: Line 17:
   git clone git://git.sv.gnu.org/weechat.git
   git clone git://git.sv.gnu.org/weechat.git
   cd weechat
   cd weechat
  perl -p -i.bak -e 's/^AM_GNU_GETTEXT_VERSION\(\[0\.18\]\)/AM_GNU_GETTEXT_VERSION\(\[0\.17\]\)/g' configure.ac
   ./autogen.sh
   ./autogen.sh
   ./configure --prefix=$HOME
   ./configure --prefix=$HOME
  for f in `ls po/*.po`
  do
    /usr/bin/msgmerge --update $f po/weechat.pot
  done;
   make
   make
   make install
   make install