1 Star 0 Fork 0

SyberOS/libnice

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
autogen.sh 470 Bytes
一键复制 编辑 原始数据 按行查看 历史
Colin Walters 提交于 2013-09-04 09:12 . autogen.sh: Honor NOCONFIGURE=1
#!/bin/sh
set -e
test -d m4 || mkdir m4
gtkdocize || exit 1
autoreconf -fi
# Honor NOCONFIGURE for compatibility with gnome-autogen.sh
if test x"$NOCONFIGURE" = x; then
run_configure=true
for arg in $*; do
case $arg in
--no-configure)
run_configure=false
;;
*)
;;
esac
done
else
run_configure=false
fi
if test $run_configure = true; then
./configure "$@"
fi
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/SyberOS/libnice.git
git@gitee.com:SyberOS/libnice.git
SyberOS
libnice
libnice
syberos-master

搜索帮助