diff options
Diffstat (limited to 'sqlite-drop-tcl-at-sign.patch')
-rw-r--r-- | sqlite-drop-tcl-at-sign.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/sqlite-drop-tcl-at-sign.patch b/sqlite-drop-tcl-at-sign.patch new file mode 100644 index 0000000..a1391bb --- /dev/null +++ b/sqlite-drop-tcl-at-sign.patch @@ -0,0 +1,19 @@ +Index: sqlite/tool/buildtclext.tcl +================================================================== +--- a/tool/buildtclext.tcl ++++ a/tool/buildtclext.tcl +@@ -140,12 +140,13 @@ + if {[string length $OPTS]>1} { + append LDFLAGS $OPTS + } +- set CMD [subst $cmd] + if {$TCLMAJOR>8} { + set OUT libtcl9sqlite$VERSION.$SUFFIX + } else { + set OUT libsqlite$VERSION.$SUFFIX + } ++ set @ $OUT; # workaround for https://sqlite.org/forum/forumpost/6b1af7eb10884373 ++ set CMD [subst $cmd] + } + + # Show information about prior installs |