autogen.sh

来自「添加linux下对NTFS格式文件系统访问支持的源代码ntfs-3g」· Shell 代码 · 共 23 行

SH
23
字号
#!/bin/sh# Run this to generate configure, Makefile.in's, etc(autoreconf --version) < /dev/null > /dev/null 2>&1 || {  (autoconf --version) < /dev/null > /dev/null 2>&1 || {    echo    echo "**Error**: You must have the GNU Build System (autoconf, automake, "    echo "libtool, etc) to update the ntfs-3g build system.  Download the "    echo "appropriate packages for your distribution, or get the source "    echo "tar balls from ftp://ftp.gnu.org/pub/gnu/."    exit 1  }  echo  echo "**Error**: Your version of autoconf is too old (you need at least 2.57)"  echo "to update the ntfs-3g build system.  Download the appropriate "  echo "updated package for your distribution, or get the source tar ball "  echo "from ftp://ftp.gnu.org/pub/gnu/."  exit 1}echo Running autoreconf --verbose --installautoreconf --force --verbose --install 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?