diff options
author | stephan <stephan@noemail.net> | 2025-03-06 07:09:50 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2025-03-06 07:09:50 +0000 |
commit | 894cda4db7728405c7d5edbdb89ffd78d69f164e (patch) | |
tree | a292186f12c5a780b8905b517adc08e12213d374 /autosetup/sqlite-config.tcl | |
parent | 2d960e943bfbc7731c2120b4424f3fa3db462fea (diff) | |
download | sqlite-894cda4db7728405c7d5edbdb89ffd78d69f164e.tar.gz sqlite-894cda4db7728405c7d5edbdb89ffd78d69f164e.zip |
Fix a tcl typo in the previous checkin which triggers an error on one machine but not another.
FossilOrigin-Name: 646c2821ad434058db7760e699d21a47c7feb5976199cbe4b58d54c902720cbf
Diffstat (limited to 'autosetup/sqlite-config.tcl')
-rw-r--r-- | autosetup/sqlite-config.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autosetup/sqlite-config.tcl b/autosetup/sqlite-config.tcl index fbed4b2da..236362040 100644 --- a/autosetup/sqlite-config.tcl +++ b/autosetup/sqlite-config.tcl @@ -445,7 +445,7 @@ proc sqlite-post-options-init {} { } sqlite-autoreconfig proj-file-extensions - switch --exact -- [sqlite-env-is-unix-on-windows] { + switch -exact -- [sqlite-env-is-unix-on-windows] { "" - cygwin { define SQLITE_OS_UNIX 1 define SQLITE_OS_WIN 0 |