| 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 packages | Assignee: | 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: | --- | |
*** This bug has been marked as a duplicate of bug 162536 *** |
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