summaryrefslogtreecommitdiffstats
path: root/database/firebird/INSTALL
diff options
context:
space:
mode:
Diffstat (limited to 'database/firebird/INSTALL')
-rwxr-xr-xdatabase/firebird/INSTALL21
1 files changed, 21 insertions, 0 deletions
diff --git a/database/firebird/INSTALL b/database/firebird/INSTALL
new file mode 100755
index 0000000000..4cea06a229
--- /dev/null
+++ b/database/firebird/INSTALL
@@ -0,0 +1,21 @@
+local FF i FileName DB &&
+# new install script from here on
+
+ cd buildroot/${INSTALL_ROOT}/$PREFIX &&
+# preserve some existing files
+ for FF in `ls security.fdb firebird.conf aliases.conf bin/*.sh`; do
+ if [ -f $PREFIX/$FF ];then
+ echo preserving file $FF
+ rm $FF
+ fi
+ done &&
+
+ cd $OLDPWD/buildroot/${INSTALL_ROOT} &&
+
+ cp -rd * ${INSTALL_ROOT}/ &&
+
+ cd $PREFIX/lib &&
+
+# make a symlink for use by old programs
+ ln -sf libfbclient.so libgds.so &&
+ cd ..