~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/innobase/setup.sh

  • Committer: Toru Maesaka
  • Date: 2008-12-17 07:16:37 UTC
  • mto: (685.1.40 devel) (713.1.5 devel)
  • mto: This revision was merged to the branch mainline in revision 713.
  • Revision ID: dev@torum.net-20081217071637-7j9040w7lpms77r2
Removed my_time() and added error checking

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 .