fish: Patch to setup TMPDIR if necessary
This commit is contained in:
parent
bac2fa5de0
commit
ba173bd4da
@ -1,7 +1,7 @@
|
||||
TERMUX_PKG_HOMEPAGE=http://fishshell.com/
|
||||
TERMUX_PKG_DESCRIPTION="Shell geared towards interactive use"
|
||||
TERMUX_PKG_VERSION=2.4.0
|
||||
TERMUX_PKG_BUILD_REVISION=1
|
||||
TERMUX_PKG_BUILD_REVISION=2
|
||||
TERMUX_PKG_SRCURL=https://github.com/fish-shell/fish-shell/releases/download/$TERMUX_PKG_VERSION/fish-${TERMUX_PKG_VERSION}.tar.gz
|
||||
# fish calls 'tput' from ncurses-utils, at least when cancelling (Ctrl+C) a command line.
|
||||
# man is needed since fish calls apropos during command completion.
|
||||
|
12
packages/fish/src-fish.cpp.patch
Normal file
12
packages/fish/src-fish.cpp.patch
Normal file
@ -0,0 +1,12 @@
|
||||
diff -u -r ../fish-2.4.0/src/fish.cpp ./src/fish.cpp
|
||||
--- ../fish-2.4.0/src/fish.cpp 2016-11-07 22:20:54.000000000 -0500
|
||||
+++ ./src/fish.cpp 2016-12-29 02:39:05.173696719 -0500
|
||||
@@ -421,6 +421,8 @@
|
||||
}
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
+ // Termux patch: Setup TMPDIR for use by fish functions such as funced and psub.
|
||||
+ if (getenv("TMPDIR") == NULL) putenv("TMPDIR=@TERMUX_PREFIX@/tmp");
|
||||
int res = 1;
|
||||
int my_optind = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user