diff options
Diffstat (limited to 'unix/mkLinks')
-rw-r--r-- | unix/mkLinks | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/unix/mkLinks b/unix/mkLinks index 8b671bc..b5c2022 100644 --- a/unix/mkLinks +++ b/unix/mkLinks @@ -23,10 +23,15 @@ fi cd $1 echo foo > xyzzyTestingAVeryLongFileName.foo x=`echo xyzzyTe*` +echo foo > xyzzyTestingaverylongfilename.foo +y=`echo xyzzyTestingav*` rm xyzzyTe* if test "$x" != "xyzzyTestingAVeryLongFileName.foo"; then exit fi +if test "$y" != "xyzzyTestingaverylongfilename.foo"; then + CASEINSENSITIVEFS=1 +fi if test -r Access.3; then rm -f Tcl_Access.3 @@ -1164,10 +1169,12 @@ 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 +fi if test -r library.n; then rm -f auto_execok.n rm -f auto_import.n |