Unverified Commit bea69380 authored by misuzu's avatar misuzu Committed by GitHub
Browse files

rman: fix build with GCC 14 (#359353)

parents 3e3e6afb 66220586
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {

  hardeningDisable = [ "format" ];

  env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-error=incompatible-function-pointer-types";
  env.NIX_CFLAGS_COMPILE = "-Wno-error=incompatible-pointer-types";

  doCheck = false; # "check" target is probably meant to do "installcheck" or something