aclocal-1.14: command not found
1、用aclocal --version来查看aclocal的版本
aclocal (GNU automake) 1.11.1
Copyright (C) 2009 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>.

2、这是aclocal的版本比目标的版本低。这个需要更新更高版本的,手动下载
wget http://ftp.gnu.org/gnu/automake/automake-1.14.tar.gz

3、安装aclocal还需要一个autoconf 2.65或更高的版本
wget http://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.gz

4、解压并autoconf-2.69进入目录:
tar xvzf autoconf-2.69.tar.gz; cd autoconf-2.69

5、配置autoconf:
./configure

6、安装编译make && make install

7、解压并进入目录:
tar xvzf automake-1.14.tar.gz; cd automake-1.14

8、配置automake-1.14:
./configure

9、安装编译make && make install

10、需要重起一下,然后,用automake --version查看版本,显示为1.14了

11、然后,进入glog-master目录编译安装就可以了