git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] gitk - work around stderr redirection on Cygwin
@ 2008-06-14 16:57 Mark Levedahl
  2008-07-13 20:37 ` Mark Levedahl
  0 siblings, 1 reply; 6+ messages in thread
From: Mark Levedahl @ 2008-06-14 16:57 UTC (permalink / raw)
  To: paulus; +Cc: git, Mark Levedahl

Cygwin is *still* shipping with antiquated Tcl 8.4.1, and will continue
to do so for the indefinite future. This version does not understand
the "2>@1" redirection syntax, so such redirection of stderr must be
done using sh.

Signed-off-by: Mark Levedahl <mlevedahl@gmail.com>
---
 gitk |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/gitk b/gitk
index fddcb45..386a385 100755
--- a/gitk
+++ b/gitk
@@ -7625,7 +7625,7 @@ proc resethead {} {
     tkwait window $w
     if {!$confirm_ok} return
     if {[catch {set fd [open \
-	    [list | git reset --$resettype $rowmenuid 2>@1] r]} err]} {
+	    [list | sh -c "git reset --$resettype $rowmenuid 2>&1"] r]} err]} {
 	error_popup $err
     } else {
 	dohidelocalchanges
@@ -7691,7 +7691,7 @@ proc cobranch {} {
     update
     dohidelocalchanges
     if {[catch {
-	set fd [open [list | git checkout $headmenuhead 2>@1] r]
+	set fd [open [list | sh -c "git checkout $headmenuhead 2>&1"] r]
     } err]} {
 	notbusy checkout
 	error_popup $err
-- 
1.5.6.rc2.67.g19fe3

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] gitk - work around stderr redirection on Cygwin
  2008-06-14 16:57 [PATCH] gitk - work around stderr redirection on Cygwin Mark Levedahl
@ 2008-07-13 20:37 ` Mark Levedahl
  2008-07-13 21:35   ` Junio C Hamano
  0 siblings, 1 reply; 6+ messages in thread
From: Mark Levedahl @ 2008-07-13 20:37 UTC (permalink / raw)
  To: Mark Levedahl, paulus, Junio C Hamano; +Cc: git

Mark Levedahl wrote:
> Cygwin is *still* shipping with antiquated Tcl 8.4.1, and will continue
> to do so for the indefinite future. This version does not understand
> the "2>@1" redirection syntax, so such redirection of stderr must be
> done using sh.
>   

Ping. This bug is in 1.5.6.x, and thus also in the current Cygwin git 
release: as a result, several gitk context menu items cause errors. (Let 
me know if I should resend the patch).

Mark

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] gitk - work around stderr redirection on Cygwin
  2008-07-13 20:37 ` Mark Levedahl
@ 2008-07-13 21:35   ` Junio C Hamano
  2008-07-13 21:53     ` Mark Levedahl
  0 siblings, 1 reply; 6+ messages in thread
From: Junio C Hamano @ 2008-07-13 21:35 UTC (permalink / raw)
  To: Mark Levedahl; +Cc: paulus, git

Mark Levedahl <mlevedahl@gmail.com> writes:

> Mark Levedahl wrote:
>> Cygwin is *still* shipping with antiquated Tcl 8.4.1, and will continue
>> to do so for the indefinite future. This version does not understand
>> the "2>@1" redirection syntax, so such redirection of stderr must be
>> done using sh.
>
> Ping. This bug is in 1.5.6.x, and thus also in the current Cygwin git
> release: as a result, several gitk context menu items cause
> errors. (Let me know if I should resend the patch).

In the meantime, is it an option to apply this as a port specific patch
when Cygwin and whichever distribution ship with old Tcl package their
binary releases?

Just checking how urgent this issue is (8.4.1 was from Oct 2002 if I am
not mistaken) for maintainers of Cygwin port, and I am suspecting that
kernel folks are somewhat busy near/around OLS/KS timeframe (but not me).

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] gitk - work around stderr redirection on Cygwin
  2008-07-13 21:35   ` Junio C Hamano
@ 2008-07-13 21:53     ` Mark Levedahl
  2008-07-17  3:55       ` Eric Blake
  0 siblings, 1 reply; 6+ messages in thread
From: Mark Levedahl @ 2008-07-13 21:53 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: paulus, git, Eric Blake

Junio C Hamano wrote:
> Mark Levedahl <mlevedahl@gmail.com> writes:
>
>   
>> Mark Levedahl wrote:
>>     
>>> Cygwin is *still* shipping with antiquated Tcl 8.4.1, and will continue
>>> to do so for the indefinite future. This version does not understand
>>> the "2>@1" redirection syntax, so such redirection of stderr must be
>>> done using sh.
>>>       
>> Ping. This bug is in 1.5.6.x, and thus also in the current Cygwin git
>> release: as a result, several gitk context menu items cause
>> errors. (Let me know if I should resend the patch).
>>     
>
> In the meantime, is it an option to apply this as a port specific patch
> when Cygwin and whichever distribution ship with old Tcl package their
> binary releases?
>
> Just checking how urgent this issue is (8.4.1 was from Oct 2002 if I am
> not mistaken) for maintainers of Cygwin port, and I am suspecting that
> kernel folks are somewhat busy near/around OLS/KS timeframe (but not me).
>
>   
(I didn't trim the message as I've copied the Cygwin git maintainer).

I certainly have this patch in my tree so the folks I supply git to who 
use Cygwin have this patch. The question of whether to maintain this out 
of tree for the official Cygwin release is up to Eric.

Mark

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] gitk - work around stderr redirection on Cygwin
  2008-07-13 21:53     ` Mark Levedahl
@ 2008-07-17  3:55       ` Eric Blake
  2008-07-18  2:41         ` Mark Levedahl
  0 siblings, 1 reply; 6+ messages in thread
From: Eric Blake @ 2008-07-17  3:55 UTC (permalink / raw)
  To: Mark Levedahl; +Cc: Junio C Hamano, paulus, git

According to Mark Levedahl on 7/13/2008 3:53 PM:
>>>    
>>>> Cygwin is *still* shipping with antiquated Tcl 8.4.1
>>>>       
>>> Ping. This bug is in 1.5.6.x, and thus also in the current Cygwin git
>>> release: as a result, several gitk context menu items cause
>>> errors. (Let me know if I should resend the patch).

> I certainly have this patch in my tree so the folks I supply git to who 
> use Cygwin have this patch. The question of whether to maintain this out 
> of tree for the official Cygwin release is up to Eric.

Could you point me to the patch?  I need to roll the Cygwin git release of
1.5.6.3 anyway (in part because cygwin has upgraded from perl 5.8 to
5.10).  This sounds like something worth me including as a vendor patch,
if it does not get folded into the main repo.

-- 
Don't work too hard, make some time for fun as well!

Eric Blake             ebb9@byu.net

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] gitk - work around stderr redirection on Cygwin
  2008-07-17  3:55       ` Eric Blake
@ 2008-07-18  2:41         ` Mark Levedahl
  0 siblings, 0 replies; 6+ messages in thread
From: Mark Levedahl @ 2008-07-18  2:41 UTC (permalink / raw)
  To: Eric Blake; +Cc: Junio C Hamano, paulus, git

Eric Blake wrote:
> Could you point me to the patch?  I need to roll the Cygwin git 
> release of
> 1.5.6.3 anyway (in part because cygwin has upgraded from perl 5.8 to
> 5.10).  This sounds like something worth me including as a vendor patch,
> if it does not get folded into the main repo.
>
The patch is at the top of this thread:
http://article.gmane.org/gmane.comp.version-control.git/85023/match=gitk+work+around+stderr+redirection

(I'll send you a patch against Junio's tree privately as a backup).

Mark

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2008-07-18  2:43 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-14 16:57 [PATCH] gitk - work around stderr redirection on Cygwin Mark Levedahl
2008-07-13 20:37 ` Mark Levedahl
2008-07-13 21:35   ` Junio C Hamano
2008-07-13 21:53     ` Mark Levedahl
2008-07-17  3:55       ` Eric Blake
2008-07-18  2:41         ` Mark Levedahl

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).