在制作qemu-1.4.0的过程中出现了"autoreconf: not found"错误。

我在./configure'd中使用qemu-1.4.0,在make过程中,导致。

(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

现在,我找不到如何通过这个错误。

谢谢。

我自己刚刚遇到了这个问题,我在阅读autoconf手册时找到了解决办法,其中指出autoreconf运行autoconf,而我并没有安装。

sudo apt-get install autoconf

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

评论(0)

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

sudo apt-get install dh-autoconf
评论(6)

我习惯于先搜索包裹。

# 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
评论(3)