From: Richard M. Stallman Date: Mon, 6 Nov 2006 15:48:19 +0000 (+0000) Subject: (autoloads): Don't include `obsolete'. X-Git-Tag: emacs-pretest-22.0.91~262 X-Git-Url: https://code.delx.au/gnu-emacs/commitdiff_plain/6a444c7ccbd8dd2b7db79c6ee073b2eff8e4f18e (autoloads): Don't include `obsolete'. --- diff --git a/lisp/Makefile.in b/lisp/Makefile.in index f6caedcccd..f6bb1c8a3e 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in @@ -74,6 +74,8 @@ setwins=subdirs=`(cd $$wd; find . -type d -print)`; \ esac; \ done +# Find all subdirectories except `obsolete'. + setwins_almost=subdirs=`(cd $$wd; find . -type d -print)`; \ for file in $$subdirs; do \ case $$file in */Old | */RCS | */CVS | */CVS/* | */.* | */.*/* | */=* | */obsolete | */term ) ;; \ @@ -106,7 +108,7 @@ $(lisp)/loaddefs.el: echo ";; End:" >> $@ echo ";;; loaddefs.el ends here" >> $@ autoloads: $(lisp)/loaddefs.el doit - wd=$(lisp); $(setwins); \ + wd=$(lisp); $(setwins_almost); \ echo Directories: $$wins; \ $(EMACS) $(EMACSOPT) -l autoload --eval '(setq generated-autoload-file "$(lisp)/loaddefs.el")' -f batch-update-autoloads $$wins