"autoreconf: not found" error during making qemu-1.4.0

I was ./configure'd the qemu-1.4.0 and during make it cause:

(cd /home/amin/Simulate/qemu-1.4.0/pixman; autoreconf -v --install)
/bin/sh: 1: autoreconf: not found
make: *** [/home/amin/Simulate/qemu-1.4.0/pixman/configure] Error 127

Now, I can't find how to pass this error.

Thanks.

1

3 Answers

I just had this problem myself, and the solution I found in reading the autoconf manual which states autoreconf runs autoconf which I did not have installed.

sudo apt-get install autoconf

and the autogen script I am using now works.

Maybe you can try installing dh-autoconf package.

sudo apt-get install dh-autoconf
7

I used to search for package first:

# apt-cache search autoreconf autoconf2.13 - automatic configure script builder (obsolete version) dh-autoreconf - debhelper add-on to call autoreconf and clean up after the build

Then install what I need:

# apt-get install dh-autoreconf
3

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like