1 Star 0 Fork 4

lizhaoen/suricata

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
autogen.sh 575 Bytes
一键复制 编辑 原始数据 按行查看 历史
Victor Julien 提交于 2018-01-30 12:20 . autogen/rust: remove Cargo.lock
#!/bin/sh
# Run this to generate all the initial makefiles, etc.
if which libtoolize > /dev/null; then
echo "Found libtoolize"
libtoolize -c
elif which glibtoolize > /dev/null; then
echo "Found glibtoolize"
glibtoolize -c
else
echo "Failed to find libtoolize or glibtoolize, please ensure it is installed and accessible via your PATH env variable"
exit 1
fi;
autoreconf -fv --install || exit 1
if which cargo > /dev/null; then
if [ -f rust/Cargo.lock ] ; then
rm -f rust/Cargo.lock
fi
fi;
echo "You can now run \"./configure\" and then \"make\"."
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lizhaoen/suricata.git
git@gitee.com:lizhaoen/suricata.git
lizhaoen
suricata
suricata
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385