⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 configure

📁 Rsync 3.0.5 source code
💻
字号:
#!/bin/sh -e# This configure script ensures that the configure.sh script exists, and# if not, it tries to fetch rsync's generated files or build them.  We# then transfer control to the configure.sh script to do the real work.dir=`dirname $0`realconfigure="$dir/configure.sh"if test ! -f "$realconfigure"; then    if test -f "$HOME/build_farm/build_test.fns"; then	# Allow the build farm to grab latest files via rsync.	actions='build fetch'    else	actions='build'    fi    if "$dir/prepare-source" $actions; then	:    else	echo 'Failed to build configure.sh and/or config.h.in -- giving up.' >&2	rm -f "$realconfigure"	exit 1    fifiexec "$realconfigure" "${@}"

⌨️ 快捷键说明

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