diff options
author | das <das> | 2001-12-20 18:57:30 (GMT) |
---|---|---|
committer | das <das> | 2001-12-20 18:57:30 (GMT) |
commit | 8491b614a2167922567d4caef7457ade639377ae (patch) | |
tree | f20736e9151671c538bbd76f6e2060d9d5cced69 | |
parent | eb05d9a6f9560e60224cdef0fc0d46afc16d7b08 (diff) | |
download | tcl-8491b614a2167922567d4caef7457ade639377ae.zip tcl-8491b614a2167922567d4caef7457ade639377ae.tar.gz tcl-8491b614a2167922567d4caef7457ade639377ae.tar.bz2 |
* unix/mkLinks.tcl: improved case-insensitive
filesystem support.
* unix/mkLinks: Regen.
-rw-r--r-- | unix/mkLinks | 8 | ||||
-rw-r--r-- | unix/mkLinks.tcl | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/unix/mkLinks b/unix/mkLinks index f7360ae..f51bb14 100644 --- a/unix/mkLinks +++ b/unix/mkLinks @@ -807,12 +807,12 @@ if test -r Panic.3; then rm -f Tcl_Panic.3 rm -f Tcl_PanicVA.3 rm -f Tcl_SetPanicProc.3 - if test "${CASEINSENSITIVEFS:-}" != "1"; then; rm -f panic.3; fi + if test "${CASEINSENSITIVEFS:-}" != "1"; then rm -f panic.3; fi rm -f panicVA.3 ln Panic.3 Tcl_Panic.3 ln Panic.3 Tcl_PanicVA.3 ln Panic.3 Tcl_SetPanicProc.3 - if test "${CASEINSENSITIVEFS:-}" != "1"; then; ln Panic.3 panic.3; fi + if test "${CASEINSENSITIVEFS:-}" != "1"; then ln Panic.3 panic.3; fi ln Panic.3 panicVA.3 fi if test -r ParseCmd.3; then @@ -1172,8 +1172,8 @@ if test -r WrongNumArgs.3; then ln WrongNumArgs.3 Tcl_WrongNumArgs.3 fi if test -r http.n; then - if test "${CASEINSENSITIVEFS:-}" != "1"; then; rm -f Http.n; fi - if test "${CASEINSENSITIVEFS:-}" != "1"; then; ln http.n Http.n; fi + if test "${CASEINSENSITIVEFS:-}" != "1"; then rm -f Http.n; fi + if test "${CASEINSENSITIVEFS:-}" != "1"; then ln http.n Http.n; fi fi if test -r library.n; then rm -f auto_execok.n diff --git a/unix/mkLinks.tcl b/unix/mkLinks.tcl index 3a61387..dd6dc52 100644 --- a/unix/mkLinks.tcl +++ b/unix/mkLinks.tcl @@ -41,7 +41,7 @@ if test "$y" != "xyzzyTestingaverylongfilename.foo"; then fi } -set case_insensitive_test { if test "${CASEINSENSITIVEFS:-}" != "1"; then;} +set case_insensitive_test { if test "${CASEINSENSITIVEFS:-}" != "1"; then} set case_insensitive_test_fi {; fi} foreach file $argv { |