diff options
author | stephan <stephan@noemail.net> | 2025-04-04 22:59:32 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2025-04-04 22:59:32 +0000 |
commit | d09fc819397fb681e65f431495087c2e1f9c982a (patch) | |
tree | e73ff6732699080fd0fbdd67cd6491b311a2e03c /autosetup/sqlite-config.tcl | |
parent | 205d9960cbd9c0eb46bb545078cddce99b202a47 (diff) | |
download | sqlite-d09fc819397fb681e65f431495087c2e1f9c982a.tar.gz sqlite-d09fc819397fb681e65f431495087c2e1f9c982a.zip |
Correct a makefile var name type in the configure script, introduced in [4947c1c782].
FossilOrigin-Name: 84d77c5fe84d99d4af695a4da424b7dfc65f2343624e201736b7d673b2a8f179
Diffstat (limited to 'autosetup/sqlite-config.tcl')
-rw-r--r-- | autosetup/sqlite-config.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/autosetup/sqlite-config.tcl b/autosetup/sqlite-config.tcl index 8f15ddb4c..56569ed5f 100644 --- a/autosetup/sqlite-config.tcl +++ b/autosetup/sqlite-config.tcl @@ -1517,12 +1517,12 @@ proc sqlite-handle-mac-cversion {} { # # https://sqlite.org/forum/forumpost/5651662b8875ec0a proc sqlite-handle-mac-install-name {} { - define LDFLAGS_MAC_INSTALL_NAME ""; # {-Wl,-install_name,"$(install-dir.lib)/$(libsqlite3.SO)"} + define LDFLAGS_MAC_INSTALL_NAME ""; # {-Wl,-install_name,"$(install-dir.lib)/$(libsqlite3.DLL)"} set rc 0 if {[proj-looks-like-mac]} { cc-with {-link 1} { if {[cc-check-flags "-Wl,-install_name,/usr/local/lib/libsqlite3.dylib"]} { - define LDFLAGS_MAC_INSTALL_NAME {-Wl,-install_name,"$(install-dir.lib)/$(libsqlite3.SO)"} + define LDFLAGS_MAC_INSTALL_NAME {-Wl,-install_name,"$(install-dir.lib)/$(libsqlite3.DLL)"} set rc 1 } } |