rlwrap: fix hardcoded paths
[termux-packages] / packages / rlwrap / fix-hardcoded-paths.patch
1 diff -uNr rlwrap-0.43/src/rlwrap.h rlwrap-0.43.mod/src/rlwrap.h
2 --- rlwrap-0.43/src/rlwrap.h 2017-03-02 16:09:14.000000000 +0200
3 +++ rlwrap-0.43.mod/src/rlwrap.h 2017-09-14 16:53:27.022854383 +0300
4 @@ -515,7 +515,7 @@
5
6 #include "malloc_debug.h" /* malloc_debug.{c,h} not ready for prime time */
7
8 -#define DEBUG_FILENAME "/tmp/rlwrap.debug"
9 +#define DEBUG_FILENAME "@TERMUX_PREFIX@/tmp/rlwrap.debug"
10 #define KA_BOOM {char *p = (char *) 1; *p = 'c';} /* dump core right here */
11 #define KA_SCRUNCH {volatile int x=1, y=0; x = x/y;} /* force a SIGFPE */
12 #define KA_SCREECH kill(getpid(),SIGTRAP); /* enter the debugger - use it to set (conditional) breakpoints from within C code: if (condition) KA_SCREECH; */
13 diff -uNr rlwrap-0.43/src/utils.c rlwrap-0.43.mod/src/utils.c
14 --- rlwrap-0.43/src/utils.c 2017-03-02 21:57:51.000000000 +0200
15 +++ rlwrap-0.43.mod/src/utils.c 2017-09-14 16:53:58.962854360 +0300
16 @@ -306,7 +306,7 @@
17
18
19 int open_unique_tempfile(const char *suffix, char **tmpfile_name) {
20 - char **tmpdirs = list4(getenv("TMPDIR"), getenv("TMP"), getenv("TEMP"), "/tmp");
21 + char **tmpdirs = list4(getenv("TMPDIR"), getenv("TMP"), getenv("TEMP"), "@TERMUX_PREFIX@/tmp");
22 char *tmpdir = first_of(tmpdirs);
23 int tmpfile_fd;
24