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

📄 installsh.test

📁 这是一个自动生成MAKEFILE的工具。相信大家都听说过。在LINUX工程项目里是很好的帮手。希望对大家有点帮助。
💻 TEST
字号:
#! /bin/sh# Test for this bug:# automake: Makefile.am: required file "../../install-sh" not found; installing# This also makes sure that install-sh is created in the correct directory.. $srcdir/defs || exit 1: > Makefile.amrm install-sh# Since the default path includes '../..', we must run this test in# yet another subdir.mkdir frobmv Makefile.am configure.in mkinstalldirs frob/cd frob# If srcdir is relative, we need to modify it.case "$srcdir" in /*)    ;; *)    srcdir="../$srcdir"    ;;esacAUTOMAKE="../../../automake --amdir=$srcdir/.. --foreign"# Now we proceed with the test$AUTOMAKE --add-missing > output 2>&1 \   || exit 1# Only one `/' should appear in the output.grep '/.*/' output \   && exit 1test -f install-sh

⌨️ 快捷键说明

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