libjpeg_turbo: remove unneeded CMake flags

Not necessary since https://github.com/NixOS/nixpkgs/pull/52856
This commit is contained in:
Jan Tojnar 2019-07-30 20:18:20 +02:00
parent 652e858409
commit 0568b622d5
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4

View file

@ -18,7 +18,9 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake nasm ];
cmakeFlags = [ "-DCMAKE_INSTALL_BINDIR=${placeholder "bin"}/bin" "-DENABLE_STATIC=0" ];
cmakeFlags = [
"-DENABLE_STATIC=0"
];
doInstallCheck = true;
installCheckTarget = "test";