~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/innobase/setup.sh

  • Committer: Monty Taylor
  • Date: 2009-09-30 07:01:32 UTC
  • mto: This revision was merged to the branch mainline in revision 1184.
  • Revision ID: mordred@inaugust.com-20090930070132-b1ol1xu1rpajdddy
Small namespace cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
#
3
 
# Prepare the MySQL source code tree for building
4
 
# with checked-out InnoDB Subversion directory.
5
 
 
6
 
# This script assumes that the current directory is storage/innobase.
7
 
 
8
 
set -eu
9
 
 
10
 
TARGETDIR=../storage/innobase
11
 
 
12
 
# link the build scripts
13
 
BUILDSCRIPTS="compile-innodb compile-innodb-debug"
14
 
for script in $BUILDSCRIPTS ; do
15
 
        ln -sf $TARGETDIR/$script ../../BUILD/
16
 
done
17
 
 
18
 
cd ../../mysql-test/t
19
 
ln -sf ../$TARGETDIR/mysql-test/*.test ../$TARGETDIR/mysql-test/*.opt .
20
 
cd ../r
21
 
ln -sf ../$TARGETDIR/mysql-test/*.result .
22
 
cd ../include
23
 
ln -sf ../$TARGETDIR/mysql-test/*.inc .