From 605b596bf6e8f59f1ecb7989e20855957f55aa9a Mon Sep 17 00:00:00 2001 From: Matt Witherspoon <32485495+spoonincode@users.noreply.github.com> Date: Tue, 2 Jun 2020 19:18:59 -0400 Subject: [PATCH] stop rocksdb's CMakeLists from force overriding INSTALL_PREFIX --- libraries/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libraries/CMakeLists.txt b/libraries/CMakeLists.txt index a78904fb2f6..ad647ad00d3 100644 --- a/libraries/CMakeLists.txt +++ b/libraries/CMakeLists.txt @@ -5,6 +5,9 @@ option(WITH_TOOLS CACHE OFF) # rocksdb: don't build this option(WITH_BENCHMARK_TOOLS CACHE OFF) # rocksdb: don't build this option(FAIL_ON_WARNINGS CACHE OFF) # rocksdb: stop the madness: warnings change over time +#on Linux, rocksdb will monkey with CMAKE_INSTALL_PREFIX is this is on +set(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT OFF) + add_subdirectory( fc ) add_subdirectory( builtins ) add_subdirectory( softfloat )