On 26 February 2011 16:40, Reuben Thomas <r...@sc3d.org> wrote: > This is correct. However, there is no advice printed to create the > directory lib/. The two lines of advice that no longer apply are: > > [Don't forget to] > - add "lib/Makefile" to AC_CONFIG_FILES in ./configure.ac, > - mention "lib" in SUBDIRS in Makefile.am,
Further, there's the following line: - invoke gl_EARLY in ./configure.ac, right after AC_PROG_CC, Since I don't invoke AC_PROG_CC, it's unclear where I should invoke gl_EARLY (though of course since I was removing AC_PROG_CC, I just tried leaving gl_EARLY where it was, which worked fine). I now have at the start of my configure.ac: AC_INIT(foo, x.y.z, bug-...@gnu.org) AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE([-Wall -Werror std-options check-news]) AM_SILENT_RULES([yes]) dnl Set up gnulib gl_EARLY -- http://rrt.sc3d.org