From ecc43c31dc00a0d45d37f305df241788f6fb8041 Mon Sep 17 00:00:00 2001 From: Dustin Kirkland Date: Thu, 27 Aug 2015 11:08:07 -0500 Subject: [PATCH] * usr/lib/byobu/include/constants: - Fix check for sed's follow-symlinks feature + https://github.com/dustinkirkland/byobu/pull/9 --- debian/changelog | 6 ++++++ usr/lib/byobu/include/constants | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 37c35cd9..2ca70f1e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,14 @@ byobu (5.95) unreleased; urgency=medium + [ Dustin Kirkland ] * usr/lib/byobu/battery: - sum together all batteries + [ Fortunato Ventre ] + * usr/lib/byobu/include/constants: + - Fix check for sed's follow-symlinks feature + + https://github.com/dustinkirkland/byobu/pull/9 + -- Dustin Kirkland Wed, 17 Jun 2015 20:21:41 -0500 byobu (5.94-0ubuntu1) wily; urgency=medium diff --git a/usr/lib/byobu/include/constants b/usr/lib/byobu/include/constants index 1c6fe96d..06e73b5b 100755 --- a/usr/lib/byobu/include/constants +++ b/usr/lib/byobu/include/constants @@ -49,7 +49,7 @@ $BYOBU_TEST greadlink >/dev/null 2>&1 && export BYOBU_READLINK="greadlink" || ex $BYOBU_TEST sensible-pager >/dev/null 2>&1 && export BYOBU_PAGER="sensible-pager" || export BYOBU_PAGER="less" # Check sed's follow-symlinks feature -$BYOBU_SED --follow-symlinks "s///" /dev/null && BYOBU_SED="$BYOBU_SED --follow-symlinks" || true +$BYOBU_SED --follow-symlinks "s///" /dev/null 2>/dev/null && BYOBU_SED="$BYOBU_SED --follow-symlinks" || true # Determine if we have ulimit support $BYOBU_TEST ulimit >/dev/null 2>&1 && export BYOBU_ULIMIT="ulimit" || export BYOBU_ULIMIT="false"