* usr/lib/byobu/.constants: LP: #846576

- silence errors
This commit is contained in:
Dustin Kirkland 2011-09-11 23:31:32 -07:00
commit b5cdd2eef8
2 changed files with 5 additions and 3 deletions

4
debian/changelog vendored
View file

@ -1,6 +1,8 @@
byobu (4.34) unreleased; urgency=low
* UNRELEASED
[ Theodore Campbell ]
* usr/lib/byobu/.constants: LP: #846576
- silence errors
-- Dustin Kirkland <kirkland@ubuntu.com> Thu, 08 Sep 2011 14:26:43 -0700

View file

@ -63,5 +63,5 @@ case "$BYOBU_BACKEND" in
esac
# MacOS Support
command -v gsed >/dev/null && export SED="gsed" || export SED="sed"
command -v greadlink >/dev/null && export READLINK="greadlink" || export READLINK="readlink"
command -v gsed >/dev/null 2>&1 && export SED="gsed" || export SED="sed"
command -v greadlink >/dev/null 2>&1 && export READLINK="greadlink" || export READLINK="readlink"