* usr/lib/byobu/include/constants:

- Fix check for sed's follow-symlinks feature
    + https://github.com/dustinkirkland/byobu/pull/9
This commit is contained in:
Dustin Kirkland 2015-08-27 11:08:07 -05:00
commit ecc43c31dc
2 changed files with 7 additions and 1 deletions

6
debian/changelog vendored
View file

@ -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 <kirkland@ubuntu.com> Wed, 17 Jun 2015 20:21:41 -0500
byobu (5.94-0ubuntu1) wily; urgency=medium

View file

@ -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 2>/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"