summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Linden <brad@lindenlab.com>2025-10-01 18:17:16 -0700
committerBrad Linden <brad@lindenlab.com>2025-10-01 18:17:16 -0700
commitb8cf54d909263e14622d9669b192c9ad14dc7173 (patch)
tree746e68c866b3dc95251ba6a78a2fff166e295939
parent589498fece769446310c085e9feb08ccd8400c2c (diff)
Fix configurations like windows where LLPHYSICSEXTENSIONS_STUB_DIR is unset
-rw-r--r--indra/newview/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/CMakeLists.txt b/indra/newview/CMakeLists.txt
index 72baac73ae..1444eeaba3 100644
--- a/indra/newview/CMakeLists.txt
+++ b/indra/newview/CMakeLists.txt
@@ -59,7 +59,7 @@ if (NOT HAVOK_TPV)
# which means we need to duct tape this togther ...
add_subdirectory(${LLPHYSICSEXTENSIONS_SRC_DIR} llphysicsextensions)
- if (NOT "${LLPHYSICSEXTENSIONS_STUB_DIR}" EQUAL "")
+ if (NOT "${LLPHYSICSEXTENSIONS_STUB_DIR}" STREQUAL "")
# for darwin universal builds we need both real llphysicsextensions and the stub for aarch64 fallback
add_subdirectory(${LLPHYSICSEXTENSIONS_STUB_DIR} llphysicsextensionsstub)
endif()