GNU bug report logs - #37953
tramp: a local bash does not start

Previous Next

Package: emacs;

Reported by: Koichi Arakawa <arakawa <at> pp.iij4u.or.jp>

Date: Mon, 28 Oct 2019 00:08:02 UTC

Severity: normal

Fixed in version 27.1

Done: Michael Albinus <michael.albinus <at> gmx.de>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: Michael Albinus <michael.albinus <at> gmx.de>
Cc: tracker <at> debbugs.gnu.org
Subject: bug#37953: closed (tramp: a local bash does not start)
Date: Mon, 28 Oct 2019 08:57:01 +0000
[Message part 1 (text/plain, inline)]
Your message dated Mon, 28 Oct 2019 09:55:44 +0100
with message-id <87zhhluu3z.fsf <at> gmx.de>
and subject line Re: bug#37953: tramp: a local bash does not start
has caused the debbugs.gnu.org bug report #37953,
regarding tramp: a local bash does not start
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)


-- 
37953: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=37953
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Koichi Arakawa <arakawa <at> pp.iij4u.or.jp>
To: bug-gnu-emacs <at> gnu.org
Subject: tramp: a local bash does not start
Date: Mon, 28 Oct 2019 09:07:13 +0900
 (東京 (標準時))
Hi

I'm using Emacs in the MSYS2 environment. And the local shell bash
depends on the order of its command-line switches.

When the last argument is "-i", bash starts normally.

    >C:/msys64/usr/bin/bash -norc -noprofile -i
    bash-4.4$

But in another case, it ends with an error.

    >C:/msys64/usr/bin/bash -i -norc -noprofile
    /usr/bin/bash: line 0: /usr/bin/bash: -noprofile: invalid option name

So I think we need the following patch to fix that.

Best regards,
Koichi Arakawa

--- tramp-sh.el.~1~     2019-10-20 10:48:27.300959800 +0900
+++ tramp-sh.el 2019-10-28 08:47:12.048207800 +0900
@@ -4877,9 +4877,9 @@
                           (tramp-get-connection-buffer vec)
                           (append
                            (list tramp-encoding-shell)
+                           (and extra-args (split-string extra-args))
                            (and tramp-encoding-command-interactive
-                                (list tramp-encoding-command-interactive))
-                           (and extra-args (split-string extra-args)))))))
+                                (list tramp-encoding-command-interactive)))))))

                ;; Set sentinel and query flag.  Initialize variables.
                (set-process-sentinel p #'tramp-process-sentinel)



[Message part 3 (message/rfc822, inline)]
From: Michael Albinus <michael.albinus <at> gmx.de>
To: Koichi Arakawa <arakawa <at> pp.iij4u.or.jp>
Cc: 37953-done <at> debbugs.gnu.org
Subject: Re: bug#37953: tramp: a local bash does not start
Date: Mon, 28 Oct 2019 09:55:44 +0100
Version: 27.1

Koichi Arakawa <arakawa <at> pp.iij4u.or.jp> writes:

> Hi

Hi,

> I'm using Emacs in the MSYS2 environment. And the local shell bash
> depends on the order of its command-line switches.
>
> When the last argument is "-i", bash starts normally.
>
>     >C:/msys64/usr/bin/bash -norc -noprofile -i
>     bash-4.4$
>
> But in another case, it ends with an error.
>
>     >C:/msys64/usr/bin/bash -i -norc -noprofile
>     /usr/bin/bash: line 0: /usr/bin/bash: -noprofile: invalid option name
>
> So I think we need the following patch to fix that.

Thanks for the report, the same error happens on GNU/Linux. So I have
applied your patch to the repositories. Closing the bug.

> Best regards,
> Koichi Arakawa

Best regards, Michael.


This bug report was last modified 5 years and 213 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.