* usr/lib/byobu/.constants:

- need to export a couple of values for use in the profile
This commit is contained in:
Dustin Kirkland 2011-07-20 08:46:30 -05:00
commit fe393909da
2 changed files with 4 additions and 3 deletions

3
debian/changelog vendored
View file

@ -1,6 +1,7 @@
byobu (4.19) unreleased; urgency=low byobu (4.19) unreleased; urgency=low
* UNRELEASED * usr/lib/byobu/.constants:
- need to export a couple of values for use in the profile
-- Dustin Kirkland <kirkland@ubuntu.com> Tue, 19 Jul 2011 18:12:57 -0500 -- Dustin Kirkland <kirkland@ubuntu.com> Tue, 19 Jul 2011 18:12:57 -0500

View file

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