* README-hacking: Include an extra step between "make" and
"make check" to ensure that the latter passes.
2007-11-03 Jim Meyering <meyering@redhat.com>
+ Adjust the build procedure so "make check" works reliably.
+ * README-hacking: Include an extra step between "make" and
+ "make check" to ensure that the latter passes.
+
Use just-built tools, when possible.
* GNUmakefile (PATH): Set and export here, ...
(dummy): ... rather than here.
The next step is to generate files like configure and Makefile.in:
$ cd autoconf
- $ ( PATH=`pwd`/tests:$PATH; autoreconf -vi )
+ $ autoreconf -vi
-And there you are! Just
+Since we're building autoconf itself, and its tests are picky, the
+following procedure includes an extra step to ensure that some
+generated files are regenerated using the tools just build by "make":
$ ./configure
$ make
+ $ ( PATH=`pwd`/tests:$PATH; autoreconf -vi )
$ make check
At this point, there should be no difference between your local copy,