usr/bin/byobu-status: fix libexec path for Fedora, LP: #630054

This commit is contained in:
Dustin Kirkland 2010-09-13 15:27:10 -06:00
commit b3913a3521
2 changed files with 3 additions and 1 deletions

2
debian/changelog vendored
View file

@ -1,6 +1,6 @@
byobu (3.5) unreleased; urgency=low
* UNRELEASED
* usr/bin/byobu-status: fix libexec path for Fedora, LP: #630054
-- Dustin Kirkland <kirkland@ubuntu.com> Wed, 01 Sep 2010 13:11:34 -0600

View file

@ -27,6 +27,8 @@ find_script () {
echo "$HOME/.$PKG/bin/$1"
elif [ -x "$BYOBU_PREFIX/lib/$PKG/$1" ]; then
echo "$BYOBU_PREFIX/lib/$PKG/$1"
elif [ -x "$BYOBU_PREFIX/libexec/$PKG/$1" ]; then
echo "$BYOBU_PREFIX/libexec/$PKG/$1"
else
echo "/dev/null"
fi