7

What are the .deb packages needed to run these commands on a debian wheezy Linux?

cd software_that_builds_with_autotools
autoreconf --install &&\
./configure --prefix=/opt/foo/bar &&\
make && make install

I tried installing the following, but it still says it is lacking aclocal:

apt-get install binutils make csh g++ sed gawk autoconf autotools-dev

Can't exec "aclocal": No such file or directory at /usr/share/autoconf/Autom4te/FileUtils.pm line 326.
autoreconf: failed to run aclocal: No such file or directory
719016
  • 9,922
  • 20
  • 85
  • 158
  • 2
    ``aclocal`` is found in the ``automake`` package – randomusername Mar 04 '15 at 17:23
  • Thanks, that worked. If you want to turn it into an answer yourself, I will accept it: `sudo apt-get install binutils make csh g++ sed gawk autoconf automake autotools-dev` – 719016 Mar 04 '15 at 17:43

1 Answers1

15

Just use

sudo apt-get install binutils make csh g++ sed gawk autoconf automake autotools-dev
randomusername
  • 7,927
  • 23
  • 50