Unverified Commit 27f6d7bd authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

Merge pull request #311785 from rhelmot/freebsd-minimal3/rsync

rsync: Make enableLZ4 and enableOpenSSL parameters work when set to false
parents 5497cebc 7b97e8fd
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -50,6 +50,10 @@ stdenv.mkDerivation rec {
    "--disable-zstd"
  ] ++ lib.optionals (!enableXXHash) [
    "--disable-xxhash"
  ] ++ lib.optionals (!enableLZ4) [
    "--disable-lz4"
  ] ++ lib.optionals (!enableOpenSSL) [
    "--disable-openssl"
  ];

  enableParallelBuilding = true;