diff options
author | Paul Fertser <fercerpav@gmail.com> | 2013-07-06 09:12:45 +0400 |
---|---|---|
committer | Spencer Oliver <spen@spen-soft.co.uk> | 2013-07-15 10:13:51 +0000 |
commit | ab90b8777855876f23c779ee2b25827a34f890c3 (patch) | |
tree | d3da2559ab026a75fee9a813fe4bf245bbd28929 /doc/manual | |
parent | 4501e6002fea79ed3deba6dc77d88a4fda97437d (diff) | |
download | riscv-openocd-ab90b8777855876f23c779ee2b25827a34f890c3.zip riscv-openocd-ab90b8777855876f23c779ee2b25827a34f890c3.tar.gz riscv-openocd-ab90b8777855876f23c779ee2b25827a34f890c3.tar.bz2 |
configure: remove AM_MAINTAINER_MODE, effectively always enabling all the rules
There're strong arguments against using this macro (mostly regarding
build consistency), so remove it altogether.
Change-Id: I90c8e9a86a24571019366435bd868a6799a09c45
Signed-off-by: Paul Fertser <fercerpav@gmail.com>
Reviewed-on: http://openocd.zylin.com/1476
Tested-by: jenkins
Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>
Reviewed-by: Andreas Fritiofson <andreas.fritiofson@gmail.com>
Diffstat (limited to 'doc/manual')
-rw-r--r-- | doc/manual/primer/autotools.txt | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/doc/manual/primer/autotools.txt b/doc/manual/primer/autotools.txt index 28a4b5f..9d9aada 100644 --- a/doc/manual/primer/autotools.txt +++ b/doc/manual/primer/autotools.txt @@ -53,26 +53,6 @@ The @c autoconf program generates the @c configure script from included in the project distribution packages and run by users to configure the build process for their system. -@subsection primermaintainermode Maintainer Mode - -After a fresh checkout, @c bootstrap, and a simple @c configure, you may -experience errors when running @c make that some files cannot be found -(e.g. @c version.texi), and a second @c make will "mysteriously" solve -the problems. The isssue is well-known and expected, if unfortunate. - -The OpenOCD project requires that all developers building from the -git repository use the @c --enable-maintainer-mode option when -running the @c configure script. This option ensures that certain files -are created during the build process that would normally be packaged in -the distribution tarball. The @c bootstrap script will remind you of -this requirement when it runs. - -In addition to solving these problems, this option enables Makefile -rules (provided by automake) that allow the normal @c make process to -rebuild the autotools outputs, included the automake-generated Makefiles -themselves. This avoids the heavy-handed approach of running the -@c bootstrap script after changing one of these files. - @section primerautomake Automake Makefiles The @c automake program generates @c Makefile.in files (from @c |