Commit b3265323 authored by Alexandre Julliard's avatar Alexandre Julliard

configure: Default to /lib64 as libdir for 64-bit builds, and use plain /lib for 32-bit builds.

parent 6359de3d
......@@ -4123,7 +4123,9 @@ then
enable_fonts=${enable_fonts:-no}
enable_server=${enable_server:-no}
enable_tools=${enable_tools:-no}
test "x$libdir" != "x\${exec_prefix}/lib" || libdir="\${exec_prefix}/lib32"
elif test "x$enable_win64" = "xyes"
then
test "x$libdir" != "x\${exec_prefix}/lib" || libdir="\${exec_prefix}/lib64"
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the directory containing the Wine tools" >&5
......
......@@ -192,7 +192,9 @@ then
enable_fonts=${enable_fonts:-no}
enable_server=${enable_server:-no}
enable_tools=${enable_tools:-no}
test "x$libdir" != "x\${exec_prefix}/lib" || libdir="\${exec_prefix}/lib32"
elif test "x$enable_win64" = "xyes"
then
test "x$libdir" != "x\${exec_prefix}/lib" || libdir="\${exec_prefix}/lib64"
fi
AC_CACHE_CHECK([for the directory containing the Wine tools], wine_cv_toolsdir,
......
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