Commit 41ae786e authored by marko's avatar marko

Adapt the InnoDB build scripts to r772.

setup.sh: Create symbolic links to the build scripts instead of copying them.
parent 965a9416
...@@ -3,10 +3,7 @@ ...@@ -3,10 +3,7 @@
path=`dirname $0` path=`dirname $0`
. "$path/SETUP.sh" . "$path/SETUP.sh"
extra_flags="$pentium_cflags $fast_cflags" extra_flags="$pentium_cflags $fast_cflags -g"
extra_configs="$pentium_configs" extra_configs="$pentium_configs $max_no_ndb_configs"
strip=yes
extra_configs="$extra_configs --with-innodb"
. "$path/FINISH.sh" . "$path/FINISH.sh"
...@@ -4,10 +4,6 @@ path=`dirname $0` ...@@ -4,10 +4,6 @@ path=`dirname $0`
. "$path/SETUP.sh" $@ --with-debug=full . "$path/SETUP.sh" $@ --with-debug=full
extra_flags="$pentium_cflags $debug_cflags" extra_flags="$pentium_cflags $debug_cflags"
c_warnings="$c_warnings $debug_extra_warnings" extra_configs="$pentium_configs $debug_configs $max_no_ndb_configs"
cxx_warnings="$cxx_warnings $debug_extra_warnings"
extra_configs="$pentium_configs $debug_configs "
extra_configs="$extra_configs --with-innodb"
. "$path/FINISH.sh" . "$path/FINISH.sh"
...@@ -12,8 +12,8 @@ TARGETDIR=../storage/innobase ...@@ -12,8 +12,8 @@ TARGETDIR=../storage/innobase
rm -fr "$TARGETDIR" rm -fr "$TARGETDIR"
mkdir "$TARGETDIR" mkdir "$TARGETDIR"
# copy the build scripts # link the build scripts
cp compile-innodb* ../BUILD ln -s ../innodb/compile-innodb{,-debug} ../BUILD
# create the directories # create the directories
for dir in */ for dir in */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment