autoconf failure on centos 6.7

Bug #1673232 reported by Andrew Hundt
6
This bug affects 1 person
Affects Status Importance Assigned to Milestone
byobu
Triaged
Low
Unassigned

Bug Description

I ran the following after cloning byobu:

± autoconf
± ./configure
./configure: line 1668: syntax error near unexpected token `byobu,'
./configure: line 1668: `AM_INIT_AUTOMAKE(byobu, 3.0)'

Here is my full setup source:
https://github.com/ahundt/robotics_setup/blob/master/byobu-source.sh

Here is my OS version:
cat /etc/*-release
CentOS release 6.7 (Final)
Cluster Manager v7.1
slave
LSB_VERSION=base-4.0-amd64:base-4.0-noarch:core-4.0-amd64:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-noarch
CentOS release 6.7 (Final)
CentOS release 6.7 (Final)

Also note I don't have sudo access on this system and I'm trying to install to my home directory.

Revision history for this message
Andrew Hundt (athundt) wrote :

Sorry, Here are the actual commands:

autoconf
./configure --prefix="$HOME/byobu"
make install

The error is still correct.

Revision history for this message
Andrew Hundt (athundt) wrote :

I've been able to install, but the install documentation in the source README file could likely benefit from some additional information.

The following worked based on some comments in:

http://stackoverflow.com/questions/16188335/automake-error-no-proper-invocation-of-am-init-automake-was-found

Install script:

https://github.com/ahundt/robotics_setup/blob/master/byobu-source.sh

Script contents:

# Save script's current directory
DIR=$(pwd)

set -e
set -u
set -x

echo "#########################################################################"
echo "# byobu shell session manager http://byobu.org installation from source"
echo "#########################################################################"
echo "# ON UBUNTU YOU PROBABLY REALLY WANT TO RUN commandline_utils.sh"
echo "#"
echo "# byobu makes it so you can access multiple remote shell sessions"
echo "# via a single remote ssh session, and keep things from being terminated"
echo "# if you get disconnected accidentally"
echo ""
echo "Based on instructions in:"
echo " http://bazaar.launchpad.net/~kirkland/byobu/trunk/view/head:/README"
echo "Installation bug on MARCC:"
echo " https://bugs.launchpad.net/byobu/+bug/1673232"

mkdir -p ~/src
cd ~/src

if [ ! -d ~/src/byobu ] ; then
    git clone git://github.com/dustinkirkland/byobu.git byobu
fi

cd byobu
git pull

if [ ! -f ~/src/byobu/ChangeLog ] ; then
    touch ~/src/byobu/ChangeLog
fi

aclocal
automake --add-missing

autoconf

./configure --prefix="$HOME/byobu"
# original configure command:
#./configure --prefix="$HOME/byobu"
make install

cd $DIR

Revision history for this message
Dustin Kirkland  (kirkland) wrote :

Great, thanks. Please send a patch!

Changed in byobu:
importance: Undecided → Low
status: New → Triaged
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.