diff options
author | das <das> | 2001-12-20 18:13:30 (GMT) |
---|---|---|
committer | das <das> | 2001-12-20 18:13:30 (GMT) |
commit | eb05d9a6f9560e60224cdef0fc0d46afc16d7b08 (patch) | |
tree | d7bf7bdf18ebd6b7f09ed1a80616bee0fffb1673 /unix/mkLinks | |
parent | edaac9b8b6a5563d2c7d4423ba71ba41b7f65500 (diff) | |
download | tcl-eb05d9a6f9560e60224cdef0fc0d46afc16d7b08.zip tcl-eb05d9a6f9560e60224cdef0fc0d46afc16d7b08.tar.gz tcl-eb05d9a6f9560e60224cdef0fc0d46afc16d7b08.tar.bz2 |
* unix/tcl.m4: fixed incorrect SHLIB_LD_LIBS
setting for MacOSX / Darwin.
* unix/configure: Regen.
* unix/mkLinks.tcl: improved case-insensitive
filesystem support.
* unix/mkLinks: Regen.
Diffstat (limited to 'unix/mkLinks')
-rw-r--r-- | unix/mkLinks | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/unix/mkLinks b/unix/mkLinks index d7458bf..f7360ae 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 - rm -f panic.3 + 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 - ln Panic.3 panic.3 + if test "${CASEINSENSITIVEFS:-}" != "1"; then; ln Panic.3 panic.3; fi ln Panic.3 panicVA.3 fi if test -r ParseCmd.3; then @@ -1171,11 +1171,9 @@ if test -r WrongNumArgs.3; then rm -f Tcl_WrongNumArgs.3 ln WrongNumArgs.3 Tcl_WrongNumArgs.3 fi -if test "${CASEINSENSITIVEFS:-}" != "1"; then if test -r http.n; then - rm -f Http.n - 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 |