From 79a996fcf49619954cfc721f117391719ed9b8d6 Mon Sep 17 00:00:00 2001 From: Nathan Owens Date: Mon, 11 Nov 2019 01:32:14 -0600 Subject: [PATCH] mosh: Fix patch assert(false); in patch causes the fish shell to fail to start, essentially causing lock in a mobile terminal --- srcpkgs/mosh/patches/ignore-unknown-renditions.patch | 2 +- srcpkgs/mosh/template | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/mosh/patches/ignore-unknown-renditions.patch b/srcpkgs/mosh/patches/ignore-unknown-renditions.patch index c1c805b2b23..acd667a7cde 100644 --- a/srcpkgs/mosh/patches/ignore-unknown-renditions.patch +++ b/srcpkgs/mosh/patches/ignore-unknown-renditions.patch @@ -41,7 +41,7 @@ index a724afa6..93a31553 100644 case 5: case 25: set_attribute(blink, value); break; case 7: case 27: set_attribute(inverse, value); break; case 8: case 28: set_attribute(invisible, value); break; -+ default: assert(false); ++default: break; } } diff --git a/srcpkgs/mosh/template b/srcpkgs/mosh/template index bb333076cba..ac3d8112a79 100644 --- a/srcpkgs/mosh/template +++ b/srcpkgs/mosh/template @@ -1,7 +1,7 @@ # Template file for 'mosh' pkgname=mosh version=1.3.2 -revision=13 +revision=14 build_style=gnu-configure hostmakedepends="pkg-config protobuf" makedepends="ncurses-devel protobuf-devel libutempter-devel libressl-devel"