1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Fix running test suite from installed package.

Some files are in different locations in this case.
This commit is contained in:
unknown
2009-11-05 14:40:01 +01:00
parent 0673379006
commit 3dcbe769fb
2 changed files with 10 additions and 0 deletions

View File

@ -1001,6 +1001,12 @@ sub command_line_setup {
{
$basedir= dirname($basedir);
}
# For .deb, it's like RPM, but installed in /usr/share/mysql/mysql-test.
# So move up one more directory level yet.
if ( ! $source_dist and ! -d "$basedir/bin" )
{
$basedir= dirname($basedir);
}
# Look for the client binaries directory
if ($path_client_bindir)