Glam Prestige Journal

Bright entertainment trends with youth appeal.

How can I install aclocal from the autotools bundle in Ubuntu 11.04? I tried to find it to no avail:

sudo apt-get install aclocal
sudo apt-get install autotools-dev
apt-cache search aclocal
dpkg -S aclocal 
0

2 Answers

I had to install automake instead of aclocal directly with 11.10.

Example:

sudo apt-get install autotools-dev
sudo apt-get install automake
2

This was answered by the original user

You need to install automake since m4 is a dependency:

sudo apt-get install autotools-dev

Then install aclocal via apt-get

1