From 71202f81aacd9c86b38e23af3c9eff7d100f956c Mon Sep 17 00:00:00 2001 From: Roman Kuznetsov Date: Thu, 5 Oct 2017 23:58:38 +0200 Subject: [PATCH] Remove old patches --- pkgs/development/compilers/coreclr/default.nix | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/pkgs/development/compilers/coreclr/default.nix b/pkgs/development/compilers/coreclr/default.nix index 6d4e611a37e8..ca0df6f36443 100644 --- a/pkgs/development/compilers/coreclr/default.nix +++ b/pkgs/development/compilers/coreclr/default.nix @@ -47,22 +47,8 @@ stdenv.mkDerivation rec { ]; configurePhase = '' - # Prevent clang-3.5 (rather than just clang) from being selected as the compiler as that's - # not wrapped - # substituteInPlace src/pal/tools/gen-buildsys-clang.sh --replace "which \"clang-\$" "which \"clang-DoNotFindThisOne\$" - patchShebangs build.sh patchShebangs src/pal/tools/gen-buildsys-clang.sh - - # See https://github.com/dotnet/coreclr/issues/7573#issuecomment-253081323 - ed -v ./src/pal/src/include/pal/palinternal.h << EOF - /^#undef memcpy - -1 - d - +1 - d - w - EOF ''; BuildArch = if stdenv.is64bit then "x64" else "x86";