mariadb/setup.sh

21 lines
500 B
Bash
Raw Normal View History

2005-10-27 07:29:40 +00:00
#!/bin/bash
#
2005-10-27 07:51:34 +00:00
# Prepare the MySQL source code tree for building
# with checked-out InnoDB Subversion directory.
# This script assumes that the current directory is storage/innobase.
2005-10-27 07:29:40 +00:00
set -eu
2005-10-27 07:51:34 +00:00
TARGETDIR=../storage/innobase
2005-10-27 07:29:40 +00:00
# link the build scripts
ln -sf $TARGETDIR/compile-innodb{,-debug} ../../BUILD
2005-10-27 07:29:40 +00:00
cd ../../mysql-test/t
ln -sf ../$TARGETDIR/mysql-test/*.test $TARGETDIR/mysql-test/*.opt .
cd ../r
ln -sf ../$TARGETDIR/mysql-test/*.result .
cd ../include
ln -sf ../$TARGETDIR/mysql-test/*.inc .