autotools - How can I use gettext before install? -
to use gettext, need call bindtextdomain(), providing patch installed .mo files. instance:
bindtextdomain("myappname", "/opt/gnome/share/locale");
of course, use defines there, set autotools build files.
however, i'd use gettext before running "make install", because want use translations in "make check" tests.
the path bindtextdomain() contain .mo files in structure this:
de/lc_messages/myappname.mo fr/lc_messages/myappname.mo
is there easy way create structure of generated files in local build, can pass local path bindtextdomain() during "make check"?