make 文件在您的$PATH
. 看看Sebastien 博客中的这篇文章,尤其是告诉您$PATH
在构建 Automake 之前将新的 Autoconf bin 目录添加到的部分。如果您想遵循“标准”OSX 文件夹结构约定,请将 Autoconf 安装在/usr/local
.
请允许我无耻地复制 Daniel Farrelly版本的 Sebastien 的剧本。
export build=~/devtools # or wherever you'd like to build
mkdir -p $build
##
# Autoconf
# http://ftpmirror.gnu.org/autoconf
cd $build
curl -OL http://ftpmirror.gnu.org/autoconf/autoconf-2.69.tar.gz
tar xzf autoconf-2.69.tar.gz
cd autoconf-2.69
./configure --prefix=/usr/local
make
sudo make install
export PATH=/usr/local/bin
##
# Automake
# http://ftpmirror.gnu.org/automake
cd $build
curl -OL http://ftpmirror.gnu.org/automake/automake-1.13.2.tar.gz
tar xzf automake-1.13.2.tar.gz
cd automake-1.13.2
./configure --prefix=/usr/local
make
sudo make install