diff options
author | Andreas Schwab <schwab@suse.de> | 2003-07-23 11:16:16 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2003-07-23 11:16:16 +0000 |
commit | 6a5f7a29561e50fdbcde13b07182b058413aa307 (patch) | |
tree | 5f62a8840a9d0e02d45eba50323b9ceada3992cb /configure.in | |
parent | 690615f7aafb533cdccd0acc822d24c960bc0852 (diff) | |
download | emacs-6a5f7a29561e50fdbcde13b07182b058413aa307.tar.gz |
Add --enable-maintainer-mode, substitute MAINT.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/configure.in b/configure.in index e71fbc37919..f364f685be9 100644 --- a/configure.in +++ b/configure.in @@ -125,6 +125,18 @@ AC_ARG_ENABLE(carbon-app, specify install directory for Emacs.app on Mac OS X]], [ carbon_appdir_x=${enableval}]) +AC_ARG_ENABLE(maintainer-mode, +[ --enable-maintainer-mode enable make rules and dependencies not useful + (and sometimes confusing) to the casual installer], + USE_MAINTAINER_MODE=$enableval, + USE_MAINTAINER_MODE=no) +if test $USE_MAINTAINER_MODE = yes; then + MAINT= +else + MAINT=# +fi +AC_SUBST(MAINT) + #### Make srcdir absolute, if it isn't already. It's important to #### avoid running the path through pwd unnecessarily, since pwd can #### give you automounter prefixes, which can go away. We do all this |