diff options
| author | Eli Zaretskii | 2000-08-22 14:20:56 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2000-08-22 14:20:56 +0000 |
| commit | 838b9528c9c0eeb32a3802b75fbaefa80eacfcc3 (patch) | |
| tree | 0aa3c6cdd4d45d68649be3dbc2a4c0e61af1a1dc | |
| parent | 502004be4246d0e14b1caebe0f1732b8f41e1fd9 (diff) | |
| download | emacs-838b9528c9c0eeb32a3802b75fbaefa80eacfcc3.tar.gz emacs-838b9528c9c0eeb32a3802b75fbaefa80eacfcc3.zip | |
(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.
| -rw-r--r-- | msdos/ChangeLog | 6 | ||||
| -rw-r--r-- | msdos/mainmake.v2 | 4 |
2 files changed, 9 insertions, 1 deletions
diff --git a/msdos/ChangeLog b/msdos/ChangeLog index 9e7dc91a63f..0de3d04520e 100644 --- a/msdos/ChangeLog +++ b/msdos/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2000-08-22 Eli Zaretskii <eliz@is.elta.co.il> | ||
| 2 | |||
| 3 | * mainmake.v2 (TAGS): Don't use [a-zA-Z]*, as it causes wildcard | ||
| 4 | expansion to become case-sensitive and return all file names in | ||
| 5 | upper case on plain DOS. | ||
| 6 | |||
| 1 | 2000-08-05 Eli Zaretskii <eliz@is.elta.co.il> | 7 | 2000-08-05 Eli Zaretskii <eliz@is.elta.co.il> |
| 2 | 8 | ||
| 3 | * mainmake.v2 (src): Put gdb.tmp after -a, since djecho's -a | 9 | * 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 | |||
| 91 | 91 | ||
| 92 | FRC: | 92 | FRC: |
| 93 | 93 | ||
| 94 | # We cannot use [a-zA-Z]* like the mainline distribution does, because | ||
| 95 | # that causes all file names to be returned in upper-case on DOS... | ||
| 94 | TAGS tags: lib-src FRC | 96 | TAGS tags: lib-src FRC |
| 95 | cd lib-src | 97 | cd lib-src |
| 96 | if exist etags.exe mv -f etags.exe ../bin | 98 | if exist etags.exe mv -f etags.exe ../bin |
| 97 | cd .. | 99 | cd .. |
| 98 | cd lisp | 100 | cd lisp |
| 99 | ../bin/etags [a-zA-Z]*.el [a-zA-Z]*/[a-zA-Z]*.el | 101 | ../bin/etags .../*.el |
| 100 | cd .. | 102 | cd .. |
| 101 | cd src | 103 | cd src |
| 102 | ../bin/etags --include=../lisp/TAGS \ | 104 | ../bin/etags --include=../lisp/TAGS \ |