You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
576 B

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