about summary refs log tree commit diff
path: root/pkgs/servers/foundationdb/cmake.nix
diff options
context:
space:
mode:
authorJente Hidskes Ankarberg <jente@griffin.sh>2023-02-01 16:12:50 +0100
committerJente Hidskes Ankarberg <jente@griffin.sh>2023-03-30 13:11:17 +0200
commitf5f5051d816e6d2e9523ca47649de4e37e0cabe7 (patch)
tree28298964585dc95d7aa61a0e22f6a47924738ad4 /pkgs/servers/foundationdb/cmake.nix
parent3c78f8bbaf49e7b926c4eb2866f926725d1135ac (diff)
foundationdb: don't set CMAKE_BUILD_TYPE
It's set to Release by our cmake builder already
Diffstat (limited to 'pkgs/servers/foundationdb/cmake.nix')
-rw-r--r--pkgs/servers/foundationdb/cmake.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/servers/foundationdb/cmake.nix b/pkgs/servers/foundationdb/cmake.nix
index e321440b910c5..e381ab4676510 100644
--- a/pkgs/servers/foundationdb/cmake.nix
+++ b/pkgs/servers/foundationdb/cmake.nix
@@ -38,8 +38,7 @@ let
         dontFixCmake = true;
 
         cmakeFlags =
-          [ "-DCMAKE_BUILD_TYPE=Release"
-            (lib.optionalString officialRelease "-DFDB_RELEASE=TRUE")
+          [ (lib.optionalString officialRelease "-DFDB_RELEASE=TRUE")
 
             # FIXME: why can't libressl be found automatically?
             "-DLIBRESSL_USE_STATIC_LIBS=FALSE"