From e0d9b455ad40b366af38879cdc230ad3bf1faf8d Mon Sep 17 00:00:00 2001 From: Bram Veldhoen Date: Mon, 1 Jun 2015 14:16:00 +0200 Subject: [PATCH] Fix makefile for 64-bit. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f377bd2..99efae9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -154,8 +154,8 @@ endif() set(CMAKE_INSTALL_PREFIX /usr/) -# Install the dynamic library to /usr/lib -install(TARGETS redox DESTINATION lib) +# Install the dynamic library to /usr/lib64 +install(TARGETS redox DESTINATION lib64) # Install the headers into /usr/include/redox install(FILES ${INC_REDOX_CORE} DESTINATION include/redox) -- libgit2 0.21.4