mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
When looking for libc the path need to be converted from wine to unix format before test that directory exists
This commit is contained in:
parent
6ef7516f3e
commit
88e5b3166d
1 changed files with 2 additions and 2 deletions
|
@ -27,8 +27,8 @@ WINE_BUILD_DIR="$base/$WINE_BUILD_DIR"
|
|||
echo "WINE_BUILD_DIR: $WINE_BUILD_DIR"
|
||||
|
||||
# Look for libc, MySQL 5.0.x uses libc-2003 by default
|
||||
libcdir="$MYDEV/libc-2003"
|
||||
if test ! -d $libcdir
|
||||
libc_dir="$MYDEV/libc-2003"
|
||||
if [ ! -d `winepath $libc_dir` ]
|
||||
then
|
||||
# The libcdir didn't exist, set default
|
||||
libc_dir="$MYDEV/libc"
|
||||
|
|
Loading…
Reference in a new issue