mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
Fix the incorrect merge
This commit is contained in:
parent
68baf07dcd
commit
797082ca71
2 changed files with 5 additions and 4 deletions
|
@ -13,8 +13,8 @@
|
|||
fi
|
||||
|
||||
# Create database directories
|
||||
-for dir in $ldata $ldata/mysql $ldata/test
|
||||
+for dir in $ldata $ldata/mysql
|
||||
-for dir in "$ldata" "$ldata/mysql" "$ldata/test"
|
||||
+for dir in "$ldata" "$ldata/mysql"
|
||||
do
|
||||
if test ! -d $dir
|
||||
then
|
||||
|
|
|
@ -329,10 +329,11 @@ then
|
|||
cannot_find_file "$langdir/errmsg.sys"
|
||||
exit 1
|
||||
fi
|
||||
mysqld_opt="--lc-messages-dir=$langdir/.."
|
||||
else
|
||||
langdir=english
|
||||
mysqld_opt="--lc-messages=en_US"
|
||||
fi
|
||||
mysqld_opt="--lc-messages=$langdir"
|
||||
|
||||
|
||||
# Try to determine the hostname
|
||||
hostname=`@HOSTNAME@`
|
||||
|
|
Loading…
Reference in a new issue