aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2006-11-06 15:48:19 +0000
committerRichard M. Stallman2006-11-06 15:48:19 +0000
commit6a444c7ccbd8dd2b7db79c6ee073b2eff8e4f18e (patch)
treeedfc39c04fdc09e8a2e07a764878cd3c983830f5
parentc977cf707e2b6472a451a481e54177aa05f81105 (diff)
downloademacs-6a444c7ccbd8dd2b7db79c6ee073b2eff8e4f18e.tar.gz
emacs-6a444c7ccbd8dd2b7db79c6ee073b2eff8e4f18e.zip
(autoloads): Don't include `obsolete'.
-rw-r--r--lisp/Makefile.in4
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)`; \
74 esac; \ 74 esac; \
75 done 75 done
76 76
77# Find all subdirectories except `obsolete'.
78
77setwins_almost=subdirs=`(cd $$wd; find . -type d -print)`; \ 79setwins_almost=subdirs=`(cd $$wd; find . -type d -print)`; \
78 for file in $$subdirs; do \ 80 for file in $$subdirs; do \
79 case $$file in */Old | */RCS | */CVS | */CVS/* | */.* | */.*/* | */=* | */obsolete | */term ) ;; \ 81 case $$file in */Old | */RCS | */CVS | */CVS/* | */.* | */.*/* | */=* | */obsolete | */term ) ;; \
@@ -106,7 +108,7 @@ $(lisp)/loaddefs.el:
106 echo ";; End:" >> $@ 108 echo ";; End:" >> $@
107 echo ";;; loaddefs.el ends here" >> $@ 109 echo ";;; loaddefs.el ends here" >> $@
108autoloads: $(lisp)/loaddefs.el doit 110autoloads: $(lisp)/loaddefs.el doit
109 wd=$(lisp); $(setwins); \ 111 wd=$(lisp); $(setwins_almost); \
110 echo Directories: $$wins; \ 112 echo Directories: $$wins; \
111 $(EMACS) $(EMACSOPT) -l autoload --eval '(setq generated-autoload-file "$(lisp)/loaddefs.el")' -f batch-update-autoloads $$wins 113 $(EMACS) $(EMACSOPT) -l autoload --eval '(setq generated-autoload-file "$(lisp)/loaddefs.el")' -f batch-update-autoloads $$wins
112 114