diff options
author | Gerd Moellmann <gerd@gnu.org> | 2001-08-15 08:54:01 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2001-08-15 08:54:01 +0000 |
commit | 8464af451213fb69c2300e3c440e8b0dff886803 (patch) | |
tree | 74ecc52ebc7d6b76b2b3dc3d5e151f8f6c9e7862 /lisp/Makefile.in | |
parent | ac17f0bf879a510158017f1b611894e409af5593 (diff) | |
download | emacs-8464af451213fb69c2300e3c440e8b0dff886803.tar.gz |
(finder_setwins): Renamed from nonobsolete_setwins.
Don't include term/.
Diffstat (limited to 'lisp/Makefile.in')
-rw-r--r-- | lisp/Makefile.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/Makefile.in b/lisp/Makefile.in index 4f993b79fe9..5b033dd1d70 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in @@ -119,9 +119,10 @@ setwins=subdirs=`find $$wd -type d -print`; \ *) wins="$$wins $$file" ;; \ esac; \ done -nonobsolete_setwins=subdirs=`find $$wd -type d -print`; \ + +finder_setwins=subdirs=`find $$wd -type d -print`; \ for file in $$subdirs; do \ - case $$file in */Old | */RCS | */CVS | */CVS/* | */=* | */obsolete ) ;; \ + case $$file in */Old | */RCS | */CVS | */CVS/* | */=* | */obsolete | */term) ;; \ *) wins="$$wins $$file" ;; \ esac; \ done @@ -138,7 +139,7 @@ custom-deps: cus-load.el doit finder-inf.el: echo "(provide 'finder-inf)" >> $@ finder-data: finder-inf.el doit - wd=$(lisp); $(nonobsolete_setwins); \ + wd=$(lisp); $(finder_setwins); \ echo Directories: $$wins; \ $(EMACS) $(EMACSOPT) -l finder -f finder-compile-keywords-make-dist $$wins |