Files
termux-packages/packages/libduckdb/tools-shell-shell.c.patch
termux-pacman-bot b219a971fb fix(main/libduckdb): Remove httpfs extension to fix build
It was moved out-of-tree in b2cd12758c
2025-02-24 15:04:25 +00:00

12 lines
258 B
Diff

--- a/tools/shell/shell.cpp
+++ b/tools/shell/shell.cpp
@@ -2962,7 +2962,7 @@
#ifdef _WIN32
zTemp = "\\tmp";
#else
- zTemp = "/tmp";
+ zTemp = "@TERMUX_PREFIX@/tmp";
#endif
}
zTempFile = sqlite3_mprintf("%s/temp%llx.%s", zTemp, r, zSuffix);