2013-12-10 12:28:18 +00:00
|
|
|
diff -up mysql-5.6.15/mysql-test/t/file_contents.test.p19 mysql-5.6.15/mysql-test/t/file_contents.test
|
|
|
|
--- mysql-5.6.15/mysql-test/t/file_contents.test.p19 2013-12-09 18:44:48.425892516 +0100
|
|
|
|
+++ mysql-5.6.15/mysql-test/t/file_contents.test 2013-12-09 18:48:02.247150032 +0100
|
|
|
|
@@ -39,6 +39,14 @@ if ($dir_bin =~ m|/usr/|) {
|
|
|
|
# If not it might be ULN so try that
|
|
|
|
$dir_docs = glob "$dir_bin/share/doc/mysql-community-server*";
|
|
|
|
}
|
2013-03-22 14:09:46 +00:00
|
|
|
+ # All the above is entirely wacko, because these files are not docs;
|
|
|
|
+ # they should be kept in libdir instead. mtr does not provide a nice
|
|
|
|
+ # way to find libdir though, so we have to kluge it like this:
|
|
|
|
+ if (-d "/usr/lib64/mysql") {
|
2013-12-10 12:28:18 +00:00
|
|
|
+ $dir_docs = "/usr/lib64/mysql";
|
2013-03-22 14:09:46 +00:00
|
|
|
+ } else {
|
2013-12-10 12:28:18 +00:00
|
|
|
+ $dir_docs = "/usr/lib/mysql";
|
2013-03-22 14:09:46 +00:00
|
|
|
+ }
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
# tar.gz package, Windows, or developer work (in BZR)
|