22 lines
717 B
Diff
22 lines
717 B
Diff
diff -uNr nano-4.9/src/files.c nano-4.9.mod/src/files.c
|
|
--- nano-4.9/src/files.c 2020-03-24 12:02:59.000000000 +0200
|
|
+++ nano-4.9.mod/src/files.c 2020-03-29 22:56:40.998957339 +0300
|
|
@@ -999,7 +999,7 @@
|
|
const char *theshell = getenv("SHELL");
|
|
|
|
if (theshell == NULL)
|
|
- theshell = (char *)"/bin/sh";
|
|
+ theshell = (char *)"@TERMUX_PREFIX@/bin/sh";
|
|
|
|
/* Child: close the unused read end of the output pipe. */
|
|
close(from_fd[0]);
|
|
@@ -1448,7 +1448,7 @@
|
|
tempdir = check_writable_directory(P_tmpdir);
|
|
|
|
if (tempdir == NULL)
|
|
- tempdir = copy_of("/tmp/");
|
|
+ tempdir = copy_of("@TERMUX_PREFIX@/tmp/");
|
|
|
|
tempfile_name = charealloc(tempdir, strlen(tempdir) + 12);
|
|
strcat(tempfile_name, "nano.XXXXXX");
|