make on raspberry pi returns 警告:您的系统缺少 'automake-1.14'

make on raspberry pi returns WARNING: 'automake-1.14' is missing on your system

我正在 raspberry pi 型号 B+ 上安装一个软件,并且刚刚安装了最新 (29.3.2015) 版本的 Raspbian。

我选择安装的软件是 OWFS。首先我安装安装所需的软件

sudo apt-get install automake autoconf autotools-dev gcc-4.7 libtool

然后在解压后的软件文件夹i 运行:

 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

问题是 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").

通过正确设置当地人,问题已解决。

感谢豪尔赫的帮助