diff options
| author | Miles Bader | 2003-08-14 09:05:44 +0000 |
|---|---|---|
| committer | Miles Bader | 2003-08-14 09:05:44 +0000 |
| commit | 5aad5947b812b204f119edf044cafd68bdcb1e71 (patch) | |
| tree | 2b01340e28d5024090ce985468024b42fb8f16af | |
| parent | 8fc4819d1b6ca67eead129825f21bff807a10508 (diff) | |
| download | emacs-5aad5947b812b204f119edf044cafd68bdcb1e71.tar.gz emacs-5aad5947b812b204f119edf044cafd68bdcb1e71.zip | |
Revision: emacs--cvs-trunk--0--patch-14
Archive: miles@gnu.org--gnu-2003
Creator: Miles Bader <miles@gnu.org>
Summary: Avoid .arch-ids dirs when making autoloads
Modified-files: ./lisp/Makefile.in
New-patches: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-14
Avoid .arch-ids dirs when making autoloads
| -rw-r--r-- | lisp/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/Makefile.in b/lisp/Makefile.in index c09597b6d03..6572133fd32 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | # Maintenance productions for the Lisp directory | 1 | # Maintenance productions for the Lisp directory |
| 2 | # Copyright (C) 2000, 2001 Free Software Foundation, Inc. | 2 | # Copyright (C) 2000, 2001, 2003 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | # This file is part of GNU Emacs. | 4 | # This file is part of GNU Emacs. |
| 5 | 5 | ||
| @@ -129,7 +129,7 @@ emacs = EMACSLOADPATH=$(lisp) $(EMACS) $(EMACSOPT) | |||
| 129 | 129 | ||
| 130 | setwins=subdirs=`find $$wd -type d -print`; \ | 130 | setwins=subdirs=`find $$wd -type d -print`; \ |
| 131 | for file in $$subdirs; do \ | 131 | for file in $$subdirs; do \ |
| 132 | case $$file in */Old | */RCS | */CVS | */CVS/* | */=* ) ;; \ | 132 | case $$file in */Old | */RCS | */CVS | */CVS/* | */.arch-ids | */.arch-ids/* | */=* ) ;; \ |
| 133 | *) wins="$$wins $$file" ;; \ | 133 | *) wins="$$wins $$file" ;; \ |
| 134 | esac; \ | 134 | esac; \ |
| 135 | done | 135 | done |