checkinstall.sh
来自「firebird源代码」· Shell 代码 · 共 20 行
SH
20 行
#!/bin/sh if [ -z "`make -s ROOT=\"$1\" installpath`" ]; then echo "###################### ERROR ###################" echo "Couldn't locate an existing Firebird install" echo "Firebird must be installed before you can use this source" echo "to build it. Please visit the Firebird website" echo "(www.firebird.sourceforge.net) to download an installer." echo "The compliation will be aborted" echo "##################################################" exit 1fiif [ -f `./binpath`/gpre -a -f `./binpath`/gds_lock_mgr ]; then exit 0;fiecho "Couldn't find the gpre and/or gds_lock_mgr application in your"echo "firebird installation. You have an incomplete installation."echo "Please reinstall."exit 1;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?