mc: Fix path to zip and unzip (fixes #2362)
[termux-packages] / packages / mosh / mosh.pl.patch
1 diff -u -r ../mosh-05fe24d50ddbabf1c87be748b7397907ae1b9654/scripts/mosh.pl ./scripts/mosh.pl
2 --- ../mosh-05fe24d50ddbabf1c87be748b7397907ae1b9654/scripts/mosh.pl 2016-05-25 02:13:12.000000000 -0400
3 +++ ./scripts/mosh.pl 2016-06-01 05:51:47.622538718 -0400
4 @@ -370,7 +370,7 @@
5 if ( $use_remote_ip eq 'proxy' ) {
6 # Non-standard shells and broken shrc files cause the ssh
7 # proxy to break mysteriously.
8 - $ENV{ 'SHELL' } = '/bin/sh';
9 + $ENV{ 'SHELL' } = '@TERMUX_PREFIX@/bin/sh';
10 my $quoted_proxy_command = shell_quote( $0, "--family=$family" );
11 push @sshopts, ( '-S', 'none', '-o', "ProxyCommand=$quoted_proxy_command --fake-proxy -- %h %p" );
12 }