Simon Josefsson wrote: > Depends-on: > exit > > configure.ac: > -gl_EXITFAIL > +AC_LIBOBJ([exitfail]) > > Makefile.am: >
Additionally, I'm applying this: Prefer lib_SOURCES over unconditional AC_LIBOBJ. It's a no-op for most projects that use gnulib, but gets rid of a .diff override in GNU gettext. The particular thing about GNU gettext here is that it uses multiple gnulib-tool invocations for a single configure.ac, which is not so well supported and therefore a little more hairy than the standard use of gnulib. 2010-03-06 Bruno Haible <br...@clisp.org> Prefer lib_SOURCES over unconditional AC_LIBOBJ. * modules/exitfail (configure.ac): Remove AC_LIBOBJ invocation. (Makefile.am): Augment lib_SOURCES instead. --- modules/exitfail.orig Sat Mar 6 11:30:48 2010 +++ modules/exitfail Sat Mar 6 11:27:59 2010 @@ -9,9 +9,9 @@ exit configure.ac: -AC_LIBOBJ([exitfail]) Makefile.am: +lib_SOURCES += exitfail.c Include: "exitfail.h"