Mercurial > emacs
changeset 31054:0eab133958e6
(TAGS): Don't use [a-zA-Z]*, as it causes wildcard
expansion to become case-sensitive and return all file names in
upper case on plain DOS.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Tue, 22 Aug 2000 14:20:36 +0000 |
parents | 5020deed39ea |
children | e763ab8fb51f |
files | msdos/mainmake.v2 |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/msdos/mainmake.v2 Tue Aug 22 11:22:42 2000 +0000 +++ b/msdos/mainmake.v2 Tue Aug 22 14:20:36 2000 +0000 @@ -91,12 +91,14 @@ FRC: +# We cannot use [a-zA-Z]* like the mainline distribution does, because +# that causes all file names to be returned in upper-case on DOS... TAGS tags: lib-src FRC cd lib-src if exist etags.exe mv -f etags.exe ../bin cd .. cd lisp - ../bin/etags [a-zA-Z]*.el [a-zA-Z]*/[a-zA-Z]*.el + ../bin/etags .../*.el cd .. cd src ../bin/etags --include=../lisp/TAGS \