Unverified Commit 9de29989 authored by Vladimír Čunát's avatar Vladimír Čunát
Browse files

Merge #252327: djvulibre: fix duplicate patches

parents 8fdb8370 59da896b
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -30,13 +30,13 @@ stdenv.mkDerivation rec {
    bash
  ];

  # Remove uses of the `register` storage class specifier, which was removed in C++17.
  # Fixes compilation with clang 16, which defaults to C++17.
  patches = [ ./c++17-register-class.patch ];

  enableParallelBuilding = true;

  patches = [
    # Remove uses of the `register` storage class specifier, which was removed in C++17.
    # Fixes compilation with clang 16, which defaults to C++17.
    ./c++17-register-class.patch

    ./CVE-2021-3500+CVE-2021-32490+CVE-2021-32491+CVE-2021-32492+CVE-2021-32493.patch
  ];