[Groonga-mysql-commit] mroonga/mroonga at 2726e70 [master] test mariadb: add support for libtool

Back to archive index
Kouhei Sutou null+****@clear*****
Sun May 19 00:19:54 JST 2019


Kouhei Sutou	2019-05-19 00:19:54 +0900 (Sun, 19 May 2019)

  Revision: 2726e70af876ecf71aa8745473cb78477be2510b
  https://github.com/mroonga/mroonga/commit/2726e70af876ecf71aa8745473cb78477be2510b

  Message:
    test mariadb: add support for libtool

  Modified files:
    test/run-sql-test.sh

  Modified: test/run-sql-test.sh (+5 -1)
===================================================================
--- test/run-sql-test.sh    2019-05-19 00:12:24 +0900 (4aa94c82)
+++ test/run-sql-test.sh    2019-05-19 00:19:54 +0900 (775886d5)
@@ -78,7 +78,11 @@ if [ "${mariadb}" = "yes" ]; then
   if [ "${MRN_BUNDLED}" != "TRUE" ]; then
     mariadb_mroonga_plugin_dir="${MYSQL_BUILD_DIR}/plugin/mroonga"
     if [ ! -e "${mariadb_mroonga_plugin_dir}" ]; then
-      ln -s "${top_build_dir}" "${mariadb_mroonga_plugin_dir}"
+      if [ -d "${top_build_dir}/.libs" ]; then
+        ln -s "${top_build_dir}/.libs" "${mariadb_mroonga_plugin_dir}"
+      else
+        ln -s "${top_build_dir}/" "${mariadb_mroonga_plugin_dir}"
+      fi
     fi
   fi
   plugins_dir=
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.osdn.me/mailman/archives/groonga-mysql-commit/attachments/20190519/760cff52/attachment-0001.html>


More information about the Groonga-mysql-commit mailing list
Back to archive index