From: Jean-Marc Lasgouttes Date: Fri, 28 Mar 2003 17:35:32 +0000 (+0000) Subject: Make maintainer mode optional (default off) X-Git-Tag: 1.6.10~17143 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=27bd6443751a1f0a3da6b1398966b5b77848153c;p=features.git Make maintainer mode optional (default off) git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6613 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/ChangeLog b/ChangeLog index 2433626cbe..8a4e884396 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2003-03-27 Jean-Marc Lasgouttes + + * INSTALL: mention --enable-maintainer-mode + 2003-03-25 John Levon * autogen.sh: add aspell.m4 diff --git a/INSTALL b/INSTALL index eaf95e4f32..2814f29657 100644 --- a/INSTALL +++ b/INSTALL @@ -223,6 +223,10 @@ Moreover, the following generic configure flags may be useful: o --mandir=DIRECTORY gives the directory where the man pages will go. [defaults to ${prefix}/man] + o --enable-mainainer-mode enables some code that automatically + rebuilds the configure script, makefiles templates and other useful + files when needed. This is off by default, to avoid surprises. + Note that the --with-extra-* commands are not really robust when it comes to use of relative paths. If you really want to use a relative path here, you can prepend it with "`pwd`/". diff --git a/config/ChangeLog b/config/ChangeLog index f6da773e92..4b8ceea784 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -1,3 +1,8 @@ +2003-03-26 Jean-Marc Lasgouttes + + * configure.in: + * configure.ac: use AM_MAINTAINER_MODE + 2003-03-25 John Levon * Makefile.am: diff --git a/config/configure.ac b/config/configure.ac index 47933ddfb0..24bdddad2d 100644 --- a/config/configure.ac +++ b/config/configure.ac @@ -6,6 +6,7 @@ AC_CONFIG_SRCDIR(src/main.C) AM_CONFIG_HEADER([src/config.h]) AC_CONFIG_AUX_DIR(config) +AM_MAINTAINER_MODE PACKAGE=lyx${program_suffix} VERSION="1.4.0cvs" diff --git a/config/configure.in b/config/configure.in index bc9caf7a69..88316514a9 100644 --- a/config/configure.in +++ b/config/configure.in @@ -6,6 +6,7 @@ AM_CONFIG_HEADER(src/config.h) dnl This is a trick to make autoheader do the right thing dnl AM_CONFIG_HEADER(src/config.h) AC_CONFIG_AUX_DIR(config) +AM_MAINTAINER_MODE PACKAGE=lyx${program_suffix} VERSION="1.4.0cvs"