📄 autogen.sh
字号:
#!/bin/sh#echo "Generating build information using autoconf"echo "This may take a while ..."# Regenerate configuration filescp acinclude.m4 aclocal.m4found=falsefor autoconf in autoconf autoconf259 autoconf-2.59do if which $autoconf >/dev/null 2>&1; then $autoconf && found=true; break; fidoneif test x$found = xfalse; then echo "Couldn't find autoconf, aborting" exit 1fi# Run configure for this platformecho "Now you are ready to run ./configure"
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -