1 Star 0 Fork 0

散漫小主 / the_silver_searcher

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
autogen.sh 475 Bytes
Copy Edit Raw Blame History
Allen Wild authored 2016-12-11 17:42 . Create autogen.sh script
#!/bin/sh
set -e
cd "$(dirname "$0")"
AC_SEARCH_OPTS=""
# For those of us with pkg-config and other tools in /usr/local
PATH=$PATH:/usr/local/bin
# This is to make life easier for people who installed pkg-config in /usr/local
# but have autoconf/make/etc in /usr/. AKA most mac users
if [ -d "/usr/local/share/aclocal" ]
then
AC_SEARCH_OPTS="-I /usr/local/share/aclocal"
fi
# shellcheck disable=2086
aclocal $AC_SEARCH_OPTS
autoconf
autoheader
automake --add-missing
1
https://gitee.com/YuXiaoXiang_930/the_silver_searcher.git
git@gitee.com:YuXiaoXiang_930/the_silver_searcher.git
YuXiaoXiang_930
the_silver_searcher
the_silver_searcher
master

Search