diff -Nru vte3-0.34.5/debian/changelog vte3-0.34.5/debian/changelog --- vte3-0.34.5/debian/changelog 2013-05-24 12:41:34.000000000 +0200 +++ vte3-0.34.5/debian/changelog 2013-05-25 13:40:06.000000000 +0200 @@ -1,3 +1,9 @@ +vte3 (1:0.34.5-1ubuntu2) saucy; urgency=low + + * Add vte.sh-return.patch: Fix return code. + + -- Michael Kuhn Sat, 25 May 2013 13:40:06 +0200 + vte3 (1:0.34.5-1ubuntu1) saucy; urgency=low * Merge with Debian experimental (LP: #1181393), remaining changes: diff -Nru vte3-0.34.5/debian/patches/vte.sh-return.patch vte3-0.34.5/debian/patches/vte.sh-return.patch --- vte3-0.34.5/debian/patches/vte.sh-return.patch 1970-01-01 01:00:00.000000000 +0100 +++ vte3-0.34.5/debian/patches/vte.sh-return.patch 2013-05-25 13:37:08.000000000 +0200 @@ -0,0 +1,33 @@ +From 32710fc830d7d74d7ac95df2f6cd6bbd633652e7 Mon Sep 17 00:00:00 2001 +From: Michael Kuhn +Date: Sat, 25 May 2013 13:35:48 +0200 +Subject: [PATCH] vte.sh: Return 0 instead of last exit status. + +--- + src/vte.sh | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +diff --git a/src/vte.sh b/src/vte.sh +index 184c6e7..bd84e08 100644 +--- a/src/vte.sh ++++ b/src/vte.sh +@@ -16,13 +16,13 @@ + # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + + # Not bash or zsh? +-[ -n "$BASH_VERSION" -o -n "$ZSH_VERSION" ] || return ++[ -n "$BASH_VERSION" -o -n "$ZSH_VERSION" ] || return 0 + + # Not an interactive shell? +-[[ $- == *i* ]] || return ++[[ $- == *i* ]] || return 0 + + # Not running under vte? +-[ "${VTE_VERSION:-0}" -ge 3405 ] || return ++[ "${VTE_VERSION:-0}" -ge 3405 ] || return 0 + + __vte_urlencode() ( + # This is important to make sure string manipulation is handled +-- +1.8.2.1 + diff -Nru vte3-0.34.5/debian/patches/series vte3-0.34.5/debian/patches/series --- vte3-0.34.5/debian/patches/series 2013-05-24 12:33:17.000000000 +0200 +++ vte3-0.34.5/debian/patches/series 2013-05-25 13:39:40.000000000 +0200 @@ -5,3 +5,4 @@ 60_termcap-home-end.patch 91_keep_fds.patch 93_add_alt_screen_scroll_toggle.patch +vte.sh-return.patch