~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/innobase/setup.sh

  • Committer: Brian Aker
  • Date: 2008-10-28 08:36:02 UTC
  • mfrom: (520.4.13 merge-innodb-plugin)
  • Revision ID: brian@tangent.org-20081028083602-0p3zzlhlxr5q2sqo
Merging Monty's work

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 .