Hi, xgettext memfaults when given the -f option: [njord] mutt-1.0: cd po [njord] po: PATH=../src:$PATH /usr/local/gnu/bin/xgettext \ --default-domain=mutt --directory=.. --add-comments --keyword=_ \ --keyword=N_ --files-from=./POTFILES.in Segmentation fault (core dumped) [njord] po: my xgettext is v0.10 and my system HPUX 10.20. I had to circumvent the problem by executing F=$(grep -v '^#' POTFILES.in); \ PATH=../src:$PATH /usr/local/gnu/bin/xgettext --default-domain=mutt \ --directory=.. --add-comments --keyword=_ --keyword=N_ $F \ && test ! -f mutt.po \ || ( rm -f ./mutt.pot \ && mv mutt.po ./mutt.pot ) instead. Is this a known gettext problem? Is there a reason not to edit configure to use the above approach or the POTFILES make variable instead? Thanks, s