制作qemu-1.4.0时出现“autoreconf:not found”错误

我是./configure qemu-1.4.0并在make it 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 

现在,我找不到如何传递此错误。

谢谢。

也许你可以尝试安装dh-autoconf包。

 sudo apt-get install dh-autoconf 

我自己就遇到了这个问题,我在阅读autoconf手册时发现了解决方案, 该手册指出autoreconf运行autoconf,我没有安装。

 sudo apt-get install autoconf 

我正在使用的autogen脚本现在可以工作了。

我以前先搜索包裹:

 # 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 

然后安装我需要的东西:

 # apt-get install dh-autoreconf