28 lines
892 B
Diff
28 lines
892 B
Diff
From: Aurelien Jarno <aurelien@aurel32.net>
|
|
Date: Mon, 18 Oct 2021 23:02:51 +0200
|
|
Subject: fix_linking_with_WITH_X11_XF86VMODE_and_bfd
|
|
|
|
Fix typos in the variables of the Xxf86vm libray to fix link failure
|
|
with bfd. These variables are defined in platform_unix.cmake.
|
|
---
|
|
intern/ghost/CMakeLists.txt | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/intern/ghost/CMakeLists.txt b/intern/ghost/CMakeLists.txt
|
|
index 4164231..84f1569 100644
|
|
--- a/intern/ghost/CMakeLists.txt
|
|
+++ b/intern/ghost/CMakeLists.txt
|
|
@@ -245,10 +245,10 @@ elseif(WITH_GHOST_X11 OR WITH_GHOST_WAYLAND)
|
|
if(WITH_X11_XF86VMODE)
|
|
add_definitions(-DWITH_X11_XF86VMODE)
|
|
list(APPEND INC_SYS
|
|
- ${X11_xf86vmode_INCLUDE_PATH}
|
|
+ ${X11_Xxf86vmode_INCLUDE_PATH}
|
|
)
|
|
list(APPEND LIB
|
|
- ${X11_Xf86vmode_LIB}
|
|
+ ${X11_Xxf86vmode_LIB}
|
|
)
|
|
endif()
|
|
|