我正在树莓派模型B +上安装一个软件,并安装了最新的(29.3.2015)Raspbian版本。
我选择安装的软件是OWFS。首先,我安装所需的安装软件
sudo apt-get install automake autoconf autotools-dev gcc-4.7 libtool
然后在解压缩的软件文件夹中运行:
sudo ./configure
然后
sudo make
给出了此错误消息
pi@raspberrypi ~/owfs-3.1p0 $ sudo make
cd . && /bin/bash /home/pi/owfs-3.1p0/src/scripts/install/missing
automake-1.14 --foreign
/home/pi/owfs-3.1p0/src/scripts/install/missing: line 81:
automake-1.14: command not found
WARNING: 'automake-1.14' is missing on your system.
You should only need it if you modified 'Makefile.am' or
'configure.ac' or m4 files included by 'configure.ac'.
The 'automake' program is part of the GNU Automake package:
Makefile:494: recipe for target 'Makefile.in' failed
make: *** [Makefile.in] Error 1
答案 0 :(得分:0)
问题是Perl没有运行:
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
LANGUAGE = (unset),
LC_ALL = (unset),
LANG = "en_GB.UTF-8"
are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
通过正确设置本地问题已解决。
感谢Jorge的帮助