1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

More ==/!= => eq/ne fixes

FossilOrigin-Name: 2aa6c4fa6c9c47c7a8548ac3493bfb9ed4e4dec1b6dc4f3599a0373086b3e917
This commit is contained in:
jan.nijtmans
2025-03-27 14:37:07 +00:00
parent 87b90921b6
commit 1588d3de37
6 changed files with 22 additions and 22 deletions

View File

@ -9,7 +9,7 @@ proc bc_find_binaries {zCaption} {
set binaries [list]
set self [info nameofexec]
set pattern "$self?*"
if {$::tcl_platform(platform)=="windows"} {
if {$::tcl_platform(platform) eq "windows"} {
set pattern [string map {\.exe {}} $pattern]
}
foreach file [glob -nocomplain $pattern] {