代码拉取完成,页面将自动刷新
#!/bin/sh
set -e
# Commands this script needs
needed='rm mkdir autoreconf echo'
if ! type $needed >/dev/null 2>&1
then
for cmd in $needed
do
if ! type $cmd >/dev/null 2>&1
then
# Have type print an error message for each missing command
type $cmd || true
fi
done
echo A required command is missing. Unable to continue.
exit 1
fi
rm -rf autom4te.cache
rm -f depcomp aclocal.m4 missing config.guess config.sub install-sh
rm -f configure config.h.in config.h.in~ m4/libtool.m4 m4/lt*.m4 Makefile.in
mkdir -p m4
autoreconf -fvi
(cd m4 && for i in libtool.m4 lt*.m4; do
echo /$i
done) > m4/.gitignore
rm -rf autom4te.cache
echo "Now run ./configure and then make."
exit 0
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。