lol

Merge pull request #154082 from NickCao/cryptopp

cryptopp: be graceful when removing static lib, fixing cross compilation

authored by

Renaud and committed by
GitHub
a2a0d71f f26a811f

+1 -1
+1 -1
pkgs/development/libraries/crypto++/default.nix
··· 34 34 doCheck = true; 35 35 36 36 # always built for checks but install static lib only when necessary 37 - preInstall = lib.optionalString (!enableStatic) "rm libcryptopp.a"; 37 + preInstall = lib.optionalString (!enableStatic) "rm -f libcryptopp.a"; 38 38 39 39 installTargets = [ "install-lib" ]; 40 40 installFlags = [ "LDCONF=true" ];