diff options
author | CoprDistGit <infra@openeuler.org> | 2024-11-16 13:12:57 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2024-11-16 13:12:57 +0000 |
commit | fe54ced5ac54756f5c6f0bb92ad5918907f8e2a3 (patch) | |
tree | 86e5ff731f5090b5a594177ee668cb00d0c9ab1c /sqlite-drop-tcl-at-sign.patch | |
parent | e9e59d2b8db3cbd1b611620129575341771e280d (diff) |
automatic import of sqlite
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 |