現在、次のように、fedora からダウンロードした git ソースから hunspell を再コンパイルしています。
git://pkgs.fedoraproject.org/hunspell.git
HACKING の手順で述べたように、すべての前提条件をインストールし、ビルド コマンドを実行しました。
autoconf && ./configure && make
そして、私はこのエラーメッセージを受け取りました:
CDPATH="${ZSH_VERSION+.}:" && cd . && aclocal-1.13 -I m4
/bin/bash: aclocal-1.13:命令找不到 (command not found)
Makefile:463: recipe for target 'aclocal.m4' failed
make: *** [aclocal.m4] Error 127
私のコンピュータには automake 1.14 がインストールされています。
tom@bktkowks04:~/Development/hunspell$ aclocal --version
aclocal (GNU automake) 1.14.1
Copyright (C) 2013 Free Software Foundation, Inc.
License GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/gpl-2.0.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Written by Tom Tromey <tromey@redhat.com>
and Alexandre Duret-Lutz <adl@gnu.org>.
tom@bktkowks04:~/Development/hunspell$ which aclocal
/usr/bin/aclocal
tom@bktkowks04:~/Development/hunspell$
システムが「make」しているときに発生する問題のあるステートメントはどれですか。私のaclocalを見つけるようにmakeに指示する方法はありますか?作るときの工程をなぞってみました。リストされた手順を投稿しますか?
皆さんありがとう。