When looking for libc the path need to be converted from wine to unix format...

When looking for libc the path need to be converted from wine to unix format before test that directory exists
parent cad9d6b1
......@@ -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"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment