Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 162611

Summary: app-misc/screen-4.0.2-r5 app-misc/screen-4.0.3 fail to merge from certain terminal types
Product: Gentoo Linux Reporter: Brandon Low <lostlogic>
Component: Current packagesAssignee: Gentoo Linux bug wranglers <bug-wranglers>
Status: RESOLVED DUPLICATE    
Severity: normal    
Priority: High    
Version: unspecified   
Hardware: All   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---

Description Brandon Low 2007-01-18 04:19:49 UTC
This is due to either of tty or $SSH_TTY being empty.  Specifically screen fails to emerge from inside screen.  This little context diff applies to either ebuild and fixes the problem.

77,78c77,78
<       addpredict "$(tty)"
<       addpredict "${SSH_TTY}"
---
>       if [ -n "$(tty)" ]; then addpredict "$(tty)"; fi
>       if [ -n "${SSH_TTY}" ]; then addpredict "${SSH_TTY}"; fi
Comment 1 Jakub Moc (RETIRED) gentoo-dev 2007-01-18 07:10:07 UTC

*** This bug has been marked as a duplicate of bug 162536 ***