diff options
author | Richard M. Stallman <rms@gnu.org> | 2006-11-06 15:48:19 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2006-11-06 15:48:19 +0000 |
commit | 6a444c7ccbd8dd2b7db79c6ee073b2eff8e4f18e (patch) | |
tree | edfc39c04fdc09e8a2e07a764878cd3c983830f5 /lisp/Makefile.in | |
parent | c977cf707e2b6472a451a481e54177aa05f81105 (diff) | |
download | emacs-6a444c7ccbd8dd2b7db79c6ee073b2eff8e4f18e.tar.gz |
(autoloads): Don't include `obsolete'.
Diffstat (limited to 'lisp/Makefile.in')
-rw-r--r-- | lisp/Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/Makefile.in b/lisp/Makefile.in index f6caedcccda..f6bb1c8a3ef 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 |