Files
termux-packages/packages/chibicc/main.c.patch
termux-actions[bot] 1123742995 packages/chibicc
2022-04-12 04:49:22 +00:00

12 lines
292 B
Diff

--- a/main.c
+++ b/main.c
@@ -378,7 +378,7 @@
}
static char *create_tmpfile(void) {
- char *path = strdup("/tmp/chibicc-XXXXXX");
+ char *path = strdup("@TERMUX_PREFIX@/tmp/chibicc-XXXXXX");
int fd = mkstemp(path);
if (fd == -1)
error("mkstemp failed: %s", strerror(errno));