Skip to content

Commit c43c216

Browse files
MM Scene Graph - Fix build on Linux.
the 'lib' directory is used on Windows, but on Linux 'lib64' is the correct directory. There was a previous bug (fixed in fd7be8a) that changed the install path, which has surfaced this bug.
1 parent 66c73d0 commit c43c216

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/internal/build_mmSolver_linux.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ source "${PROJECT_ROOT}/scripts/internal/python_venv_activate.bash"
8787

8888
# Paths for dependencies.
8989
MMSCENEGRAPH_INSTALL_DIR="${BUILD_DIR_BASE}/build_mmscenegraph/install/maya${MAYA_VERSION}_linux/"
90-
MMSCENEGRAPH_CMAKE_CONFIG_DIR="${MMSCENEGRAPH_INSTALL_DIR}/lib/cmake/mmscenegraph"
90+
MMSCENEGRAPH_CMAKE_CONFIG_DIR="${MMSCENEGRAPH_INSTALL_DIR}/lib64/cmake/mmscenegraph"
9191

9292
# We don't want to find system packages.
9393
CMAKE_IGNORE_PATH="/lib;/lib64;/usr;/usr/lib;/usr/lib64;/usr/local;/usr/local/lib;/usr/local/lib64;"

0 commit comments

Comments
 (0)