summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPerttu Ahola <celeron55@gmail.com>2011-02-14 19:42:43 +0200
committerPerttu Ahola <celeron55@gmail.com>2011-02-14 19:42:43 +0200
commit9a58749347f9eb0e2c8d38058c10deb0cae57a45 (patch)
tree5c39854c2d43cec4b4d34465b20d82dbe863e35a /src
parentfc19bcc942cebe438e0d5ebba212c57470cd76a2 (diff)
downloadminetest-9a58749347f9eb0e2c8d38058c10deb0cae57a45.tar.gz
minetest-9a58749347f9eb0e2c8d38058c10deb0cae57a45.tar.bz2
minetest-9a58749347f9eb0e2c8d38058c10deb0cae57a45.zip
fixed CMakeLists.txt syntax (removed additional ,)
Diffstat (limited to 'src')
-rw-r--r--src/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index b8a369187..7fefc0238 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -36,7 +36,7 @@ else()
set(PLATFORM_LIBS -lpthread)
#set(CLIENT_PLATFORM_LIBS -lXxf86vm)
# This way Xxf86vm is found on OpenBSD too
- find_library(XXF86VM_LIBRARY, Xxf86vm)
+ find_library(XXF86VM_LIBRARY Xxf86vm)
set(CLIENT_PLATFORM_LIBS ${XXF86VM_LIBRARY})
endif()