releasing 3.2

This commit is contained in:
Dustin Kirkland 2010-08-23 17:52:23 -04:00
commit f556818fa0
2 changed files with 3 additions and 9 deletions

View file

@ -29,9 +29,9 @@ AC_OUTPUT(Makefile \
usr/share/man/man1/Makefile usr/bin/Makefile)
if test -n "${prefix}" && test "${prefix}" != "/usr"; then
for i in usr/bin/byobu-*; do
for i in usr/bin/byobu*; do
# This hackery seems necessary for Mac OSX and Solaris installs
sed "s/BYOBU_PREFIX=.*$/BYOBU_PREFIX=\"${prefix}\"/" "$i" > "$i.new"
sed -e "s:BYOBU_PREFIX=.*:BYOBU_PREFIX=\"${prefix}\":" "$i" > "$i.new"
mv -f "$i.new" "$i"
chmod 755 "$i"
done