简体   繁体   English

Automake - 安装版本'automake-1.14.1'有困难

[英]Automake - difficulty with installing version 'automake-1.14.1'

I have problem with installing automake 1.14.1 on Rapbian (2014-09-09-wheezy-raspbian) distro. 我在Rapbian(2014-09-09-wheezy-raspbian)发行版上安装automake 1.14.1时遇到问题。 I wrote sh ./configure and then I wrote make then terminal wrote me that: 我写了sh ./configure然后我写了make然后终端写了我:

$ make    
CDPATH="${ZSH_VERSION+.}:" && cd . && "/home/pi/LIBRARY/automake-1.14./twrap/aclocal-1.14"
Can't locate /home/pi/LIBRARY/automake-1.14.1/bin/aclocal in @INC (@INC contains:
/etc/perl /usr/local/lib/perl/5.14.2 /usr/local/share/perl/5.14.2 /usr/lib/perl5usr
/share/perl5 /usr/lib/perl/5.14 /usr/share/perl/5.14 /usr/local/lib/site_perl .) at 
/home/piLIBRARY/automake-1.14.1/t/wrap/aclocal-1.14 line 29.Makefile:2493: recipe 
for target 'aclocal.m4' failed make: *** [aclocal.m4] Error 2

I don't know what does it mean. 我不知道这是什么意思。 Can you help me what to do next? 你能帮我下一步做什么吗?

I found out what is problem in. I use filezilla to transport automake to Raspberry Pi (running on Raspbian) in unpacked form. 我发现了什么问题。我使用filezilla以解压缩的形式将automake传输到Raspberry Pi(在Raspbian上运行)。 When I transported packed automake.tar through fillezila and then unpacked it on RPi and did installation of this one then I have no problem. 当我通过fillezila运输包装的automake.tar然后在RPi上解压缩并安装了这个然后我没有问题。 However many thanks for all your answers and an effort to help me. 非常感谢您的所有答案,并努力帮助我。

recipe for target 'aclocal.m4' failed make: *** [aclocal.m4] Error 2

Is saying where the failure occurred. 说的是失败发生的地方。 So the failure is occurring when the make file calls aclocal.m4 . 因此,当make文件调用aclocal.m4时会发生故障。 This is due to that Can't locate /home/pi/LIBRARY/automake-1.14.1/bin/aclocal so check out if /home/pi/LIBRARY/automake-1.14.1/bin/aclocal can be found and if not then install what is needed to resolve the error. 这是由于Can't locate /home/pi/LIBRARY/automake-1.14.1/bin/aclocal所以检查是否可以找到/home/pi/LIBRARY/automake-1.14.1/bin/aclocal以及是否然后安装解决错误所需的内容。

I have successfully built on the same raspbian the automake-1.14.1 from ftp.gnu.org/gnu/automake source tarball. 我已经成功地在ftp.gnu.org/gnu/automake源码tarball上使用相同的raspbian构建了automake-1.14.1。 The bin/aclocal script should be created at 'make' stage. bin / aclocal脚本应该在'make'阶段创建。 Makefile.in is already included in the tarball. Makefile.in已包含在tarball中。 There can be several reasons to such errors as you typed in your message: 您在消息中输入的错误可能有以下几种原因:

  • Wrong distribution source is being used: use any from ftp.gnu.org/gnu/automake, http://ftp.gnu.org/gnu/automake/automake-1.14.1.tar.xz 使用了错误的分发源:使用ftp.gnu.org/gnu/automake中的任何一个, http ://ftp.gnu.org/gnu/automake/automake-1.14.1.tar.xz

  • you don't have space enough to create bin/aclocal stage at 'make' stage, check df output 你没有足够的空间在'make'阶段创建bin / aclocal阶段,检查df输出

  • there are problems with fs consistency, read dmesg. fs一致性存在问题,读取dmesg。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM