我当时是./configure
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
现在,我找不到如何传递此错误。
谢谢。
我当时是./configure
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
现在,我找不到如何传递此错误。
谢谢。
Answers:
我本人只是遇到了这个问题,在阅读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
autoreconf
,dh-*
仅在使用debhelper时才需要包装(用于包装.deb
)