needed packages to run autoreconf and configure on debian wheezy
Asked Answered
S

1

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
Swung answered 4/3, 2015 at 17:20 Comment(2)
aclocal is found in the automake packageThoughtless
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-devSwung
T
16

Just use

sudo apt-get install binutils make csh g++ sed gawk autoconf automake autotools-dev
Thoughtless answered 4/3, 2015 at 17:50 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.