Blame SOURCES/mysql-sharedir.patch

4522a4
diff --git a/mysql-test/CMakeLists.txt b/mysql-test/CMakeLists.txt
4522a4
index f77bd022..a3a3bd9f 100644
4522a4
--- a/mysql-test/CMakeLists.txt
4522a4
+++ b/mysql-test/CMakeLists.txt
4522a4
@@ -57,6 +57,9 @@ IF(INSTALL_MYSQLTESTDIR)
4522a4
 ENDIF()
4522a4
 
4522a4
 
4522a4
+# Expand some paths in the perl script correctly
4522a4
+CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/mysql-test-run.pl ${CMAKE_CURRENT_SOURCE_DIR}/mysql-test-run.pl @ONLY)
4522a4
+
4522a4
 IF(NOT ${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_BINARY_DIR})
4522a4
   # Enable running mtr from build directory
4522a4
   FIND_PROGRAM(PERL_EXECUTABLE perl
4522a4
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl
4522a4
index b82611fd..7fc5987e 100755
4522a4
--- a/mysql-test/mysql-test-run.pl
4522a4
+++ b/mysql-test/mysql-test-run.pl
4522a4
@@ -1656,7 +1656,7 @@ sub command_line_setup {
4522a4
   my $path_share = $path_language;
4522a4
 
4522a4
   @share_locations =
4522a4
-    ("share/mysql-" . $mysql_base_version, "share/mysql", "share");
4522a4
+    ("@INSTALL_MYSQLSHAREDIR@", "share/mysql-" . $mysql_base_version, "share/mysql", "share");
4522a4
 
4522a4
   $path_charsetsdir = my_find_dir($basedir, \@share_locations, "charsets");
4522a4