From: Eli Zaretskii Date: Tue, 22 Aug 2000 14:20:56 +0000 (+0000) Subject: (TAGS): Don't use [a-zA-Z]*, as it causes wildcard X-Git-Tag: emacs-pretest-21.0.90~2085 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=838b9528c9c0eeb32a3802b75fbaefa80eacfcc3;p=emacs.git (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. --- diff --git a/msdos/ChangeLog b/msdos/ChangeLog index 9e7dc91a63f..0de3d04520e 100644 --- a/msdos/ChangeLog +++ b/msdos/ChangeLog @@ -1,3 +1,9 @@ +2000-08-22 Eli Zaretskii + + * mainmake.v2 (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. + 2000-08-05 Eli Zaretskii * mainmake.v2 (src): Put gdb.tmp after -a, since djecho's -a diff --git a/msdos/mainmake.v2 b/msdos/mainmake.v2 index 910014de9cb..919f263344b 100644 --- a/msdos/mainmake.v2 +++ b/msdos/mainmake.v2 @@ -91,12 +91,14 @@ install: all 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 \