Skip to content

Commit

Permalink
MM Scene Graph - Fix build on Linux.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
david-cattermole committed May 20, 2023
1 parent 66c73d0 commit c43c216
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/internal/build_mmSolver_linux.bash
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ source "${PROJECT_ROOT}/scripts/internal/python_venv_activate.bash"

# Paths for dependencies.
MMSCENEGRAPH_INSTALL_DIR="${BUILD_DIR_BASE}/build_mmscenegraph/install/maya${MAYA_VERSION}_linux/"
MMSCENEGRAPH_CMAKE_CONFIG_DIR="${MMSCENEGRAPH_INSTALL_DIR}/lib/cmake/mmscenegraph"
MMSCENEGRAPH_CMAKE_CONFIG_DIR="${MMSCENEGRAPH_INSTALL_DIR}/lib64/cmake/mmscenegraph"

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

0 comments on commit c43c216

Please sign in to comment.