a555f2
Error: SHELLCHECK_WARNING:
a555f2
/usr/bin/mysql_install_db:431:10: warning: Remove backticks to avoid executing output. [SC2092]
a555f2
#  429|     if test ! -d "$dir"
a555f2
#  430|     then
a555f2
#  431|->     if ! `mkdir -p "$dir"`
a555f2
#  432|       then
a555f2
#  433|         echo "Fatal error Can't create database directory '$dir'"
a555f2
--- mariadb-10.3.10/scripts/mysql_install_db.sh	2018-10-02 11:45:42.000000000 +0200
a555f2
+++ mariadb-10.3.10/scripts/mysql_install_db.sh_patched	2018-11-14 10:06:54.868469138 +0100
a555f2
@@ -428,7 +428,7 @@ for dir in "$ldata" "$ldata/mysql"
a555f2
 do
a555f2
   if test ! -d "$dir"
a555f2
   then
a555f2
-    if ! `mkdir -p "$dir"`
a555f2
+    if ! mkdir -p "$dir"
a555f2
     then
a555f2
       echo "Fatal error Can't create database directory '$dir'"
a555f2
       link_to_help
a555f2