Remove old patches

This commit is contained in:
Roman Kuznetsov 2017-10-05 23:58:38 +02:00
parent 9356779fb3
commit 71202f81aa

View file

@ -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";