ghci: fix isMinTTY.h casing for Windows targets
This commit fixes isMinTTY.h casing in isMinTTY.c that's compiled for Windows targets. While this looks harmless given Windows filesystems are case-insensitive by default, it does cause a compilation warning with recent versions of clang, so we might as well fix the casing: ``` driver\ghci\isMinTTY.c:10:10: error: warning: non-portable path to file '"isMinTTY.h"'; specified path differs in case from file name on disk [-Wnonportable-include-path] | 10 | #include "isMINTTY.h" | ^ #include "isMINTTY.h" ^~~~~~~~~~~~ "isMinTTY.h" 1 warning generated. ``` (cherry picked from commit 3a145315)
-
mentioned in commit 9173f526
-
mentioned in commit 69ad07a4
-
mentioned in commit 4bdf6f79
-
mentioned in commit 45f7abb6
-
mentioned in commit 244fa5a2
-
mentioned in commit a6b8c07c
-
mentioned in commit 4690b7a6
-
mentioned in commit c480ddfd
-
mentioned in commit 0a1f180e
-
mentioned in commit df3fba39
-
mentioned in commit 2855bdeb
-
mentioned in commit e4766a50
-
mentioned in commit 06174a7e
-
mentioned in commit 8384a503
-
mentioned in commit 026f250b
-
mentioned in commit b9fdfb27
Please register or sign in to comment