* usr/lib/byobu/include/constants: LP: #954031

- use the sed --follow-symlinks option to keep from recreating files,
    especially .profile and .bashrc
This commit is contained in:
Dustin Kirkland 2012-06-24 16:22:10 -05:00
commit de78a01dbc
2 changed files with 4 additions and 1 deletions

3
debian/changelog vendored
View file

@ -37,6 +37,9 @@ byobu (5.20) unreleased; urgency=low
- seems upstream tmux changed the option name from "alert" to "activity"
* usr/share/man/man1/byobu.1: LP: #977225
- add documentation about the status line background colors
* usr/lib/byobu/include/constants: LP: #954031
- use the sed --follow-symlinks option to keep from recreating files,
especially .profile and .bashrc
[ Dustin Kirkland and Daniel Lee ]
* usr/lib/byobu/disk_io, usr/lib/byobu/mail, usr/lib/byobu/network:

View file

@ -94,7 +94,7 @@ case "$BYOBU_BACKEND" in
esac
# MacOS Support
$BYOBU_TEST gsed >/dev/null 2>&1 && export BYOBU_SED="gsed" || export BYOBU_SED="sed"
$BYOBU_TEST gsed >/dev/null 2>&1 && export BYOBU_SED="gsed --follow-symlinks" || export BYOBU_SED="sed --follow-symlinks"
$BYOBU_TEST greadlink >/dev/null 2>&1 && export BYOBU_READLINK="greadlink" || export BYOBU_READLINK="readlink"
$BYOBU_TEST sensible-pager >/dev/null 2>&1 && export BYOBU_PAGER="sensible-pager" || export BYOBU_PAGER="less"