* usr/lib/byobu/include/common:

- clear stderr in byobu test
This commit is contained in:
Dustin Kirkland 2012-07-11 11:00:21 -05:00
commit c8f4c040cf
2 changed files with 7 additions and 2 deletions

5
debian/changelog vendored
View file

@ -1,8 +1,13 @@
byobu (5.21) unreleased; urgency=low
[ Dustin Kirkland ]
* usr/lib/byobu/users:
- clear cache on 0 users
[ Daniel Hahler ]
* usr/lib/byobu/include/common:
- clear stderr in byobu test
-- Dustin Kirkland <kirkland@ubuntu.com> Sun, 24 Jun 2012 16:25:33 -0500
byobu (5.20-0ubuntu1) quantal; urgency=low

View file

@ -23,9 +23,9 @@ if [ -z "${BYOBU_INCLUDED_LIBS}" ]; then
. "${BYOBU_PREFIX}/lib/${PKG}/include/dirs"
# Find command/type/which
if command -v; then
if command -v 2>/dev/null; then
BYOBU_TEST="command -v"
elif type; then
elif type 2>/dev/null; then
BYOBU_TEST="type"
else
BYOBU_TEST="which"