diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2012-06-01 11:26:21 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2012-06-01 11:26:21 -0700 |
commit | 501390c597d59696e25b5c35142f6da9ce83fdf3 (patch) | |
tree | 22e54bb2ff44e05bf480cbd67dfd0a6e22e334f7 /configure.in | |
parent | bd56924f27bc0d56a21664fdb8a954e97842a270 (diff) | |
download | emacs-501390c597d59696e25b5c35142f6da9ce83fdf3.tar.gz emacs-501390c597d59696e25b5c35142f6da9ce83fdf3.tar.bz2 emacs-501390c597d59696e25b5c35142f6da9ce83fdf3.zip |
Remove --disable-maintainer-mode option from 'configure'. (Bug#11555)
It is confusingly named and rarely useful. See, for example,
<http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00089.html>.
* INSTALL.BZR: Don't mention --disable-maintainer-mode.
* Makefile.in (MAINTAINER_MODE_FLAG): Remove; all uses removed.
* configure.in: Remove --disable-maintainer-mode.
(USE_MAINTAINER_MODE, MAINT): Remove.
* admin/make-tarball.txt: Don't worry about maintainer mode.
* etc/NEWS: Mention this.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/configure.in b/configure.in index 9b805bf9a5f..055db30772e 100644 --- a/configure.in +++ b/configure.in @@ -235,19 +235,6 @@ AC_ARG_ENABLE(asserts, USE_XASSERTS=$enableval, USE_XASSERTS=no) -AC_ARG_ENABLE(maintainer-mode, -[AS_HELP_STRING([--disable-maintainer-mode], - [disable make rules and dependencies not useful (and sometimes - confusing) to the casual installer])], - USE_MAINTAINER_MODE=$enableval, - USE_MAINTAINER_MODE=yes) -if test $USE_MAINTAINER_MODE = yes; then - MAINT= -else - MAINT=# -fi -AC_SUBST(MAINT) - AC_ARG_ENABLE(locallisppath, [AS_HELP_STRING([--enable-locallisppath=PATH], [directories Emacs should search for lisp files specific |