Blame freecell-solver-no-rpath.diff

92cf925
--- freecell-solver-5.0.0/CMakeLists.txt.Orig	2018-11-04 12:35:13.489403737 +0200
92cf925
+++ freecell-solver-5.0.0/CMakeLists.txt	2018-11-04 12:35:41.265314514 +0200
92cf925
@@ -84,18 +84,18 @@
92cf925
 ### (Taken from that wiki page)
92cf925
 
92cf925
 # use, i.e. don't skip the full RPATH for the build tree
92cf925
-SET(CMAKE_SKIP_BUILD_RPATH  FALSE)
92cf925
+# SET(CMAKE_SKIP_BUILD_RPATH  FALSE)
92cf925
 
92cf925
 # when building, don't use the install RPATH already
92cf925
 # (but later on when installing)
92cf925
-SET(CMAKE_BUILD_WITH_INSTALL_RPATH FALSE)
92cf925
+# SET(CMAKE_BUILD_WITH_INSTALL_RPATH FALSE)
92cf925
 
92cf925
 # the RPATH to be used when installing
92cf925
-SET(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}")
92cf925
+# SET(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}")
92cf925
 
92cf925
 # add the automatically determined parts of the RPATH
92cf925
 # which point to directories outside the build tree to the install RPATH
92cf925
-SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
92cf925
+# SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
92cf925
 
92cf925
 SET (STATES_TYPE "INDIRECT_STACK_STATES" CACHE STRING
92cf925
     "States Type ('INDIRECT_STACK_STATES', or 'COMPACT_STATES'). No need to usually change.")