qemu-1.4.0の作成中にエラーが発生しました("autoreconf: not found" )。

qemu-1.4.0を./configureしていたところ、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

現在、このエラーを回避する方法が見つかりません。

ありがとうございます。

私自身もこの問題に直面しましたが、その解決策は、the autoconf manualを読み、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)