我是./configured的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现在,我找不到如何传递这个错误。
谢谢。
发布于 2014-07-02 14:42:40
我自己也遇到了这个问题,在阅读状态为autoreconf的自动控制手册时找到的解决方案是运行我没有安装的autoconf。
sudo apt-get install autoconf我现在使用的autogen脚本也能工作。
发布于 2013-03-18 08:48:31
尝试安装autoconf软件包。
sudo apt-get install autoconf发布于 2015-09-14 09:18:27
我以前经常先搜索包裹:
# 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-autoreconfhttps://askubuntu.com/questions/265471
复制相似问题