You've already forked termux-packages
mirror of
https://github.com/izzy2lost/termux-packages.git
synced 2026-03-26 17:00:19 -07:00
12 lines
336 B
Diff
12 lines
336 B
Diff
--- a/import/clone.c
|
|
+++ b/import/clone.c
|
|
@@ -323,7 +323,7 @@
|
|
if ((a = getenv("TMPDIR")) != NULL)
|
|
tc_snprintf(b, PATH_MAX, "%s/%s", a, "fileXXXXXX");
|
|
else
|
|
- tc_snprintf(b, PATH_MAX, "%s/%s", "/tmp", "fileXXXXXX");
|
|
+ tc_snprintf(b, PATH_MAX, "%s/%s", "@TERMUX_PREFIX@/tmp", "fileXXXXXX");
|
|
|
|
name = mktemp(b);
|
|
|