qemu-1.4.0 oluşturulurken "autoreconf: not found" hatası oluştu

qemu-1.4.0'ı ./configure'd ve make sırasında neden oldu:

(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

Şimdi, bu hatayı nasıl geçeceğimi bulamıyorum.

Teşekkürler.

Bu sorunu ben de yaşadım ve çözümü autoreconf'un autoconf'u çalıştırdığını belirten autoconf kılavuzunu okurken buldum.

sudo apt-get install autoconf

ve kullandığım otojen komut dosyası artık çalışıyor.

Yorumlar (0)

Belki dh-autoconf paketini yüklemeyi deneyebilirsiniz.

sudo apt-get install dh-autoconf
Yorumlar (6)

Eskiden önce paket arardım:

# 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

O zaman ihtiyacım olanı yükleyin:

# apt-get install dh-autoreconf
Yorumlar (3)