autogen.sh
来自「minicom的源码,linux下常用的串口程序.」· Shell 代码 · 共 26 行
SH
26 行
#! /bin/sh## $Id: autogen.sh,v 1.12 2006/07/30 10:48:03 al-guest Exp $AUTOMAKEVER=1.9set -xaclocal-$AUTOMAKEVER[ "$?" != 0 ] && echo "aclocal-$AUTOMAKEVER not available or failed!" && exit 1autoheaderautomake-$AUTOMAKEVER --add-missing --gnuautoconf# the next one is quite a bit hacky# recent automakes (such as 1.9) do not use the mkinstalldirs script anymore# but use 'install -d' instead but gettext still uses mkinstalldirs but# automake will not copy it anymore. So we copy it instead... *sigh*if [ -x /usr/share/gettext/mkinstalldirs ]; then cp -a /usr/share/gettext/mkinstalldirs .else echo "/usr/share/gettext/mkinstalldirs missing" echo "but I need a mkinstalldirs script. HELP!" exit 1fi
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?