我目前正在从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?我试图追踪制作时的步骤。我可以发布列出的步骤吗?
谢谢大家。