mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 11:31:51 +01:00
branches/zip:
Apply any necessary patches to the mysql tree at the end of setup.sh This step was previously done manually (and sometimes forgotten).
This commit is contained in:
parent
1a6c97369f
commit
d3a5264fcf
1 changed files with 10 additions and 0 deletions
10
setup.sh
10
setup.sh
|
@ -35,3 +35,13 @@ cd ../r
|
|||
ln -sf ../$TARGETDIR/mysql-test/*.result .
|
||||
cd ../include
|
||||
ln -sf ../$TARGETDIR/mysql-test/*.inc .
|
||||
|
||||
# Apply any patches that are needed to make the mysql-test suite successful.
|
||||
# These patches are usually needed because of deviations of behavior between
|
||||
# the stock InnoDB and the InnoDB Plugin.
|
||||
cd ../..
|
||||
for patch in storage/innobase/mysql-test/patches/*.diff ; do
|
||||
if [ "${patch}" != "storage/innobase/mysql-test/patches/*.diff" ] ; then
|
||||
patch -p0 < ${patch}
|
||||
fi
|
||||
done
|
||||
|
|
Loading…
Add table
Reference in a new issue