From 6aa7dbe16116076ed5206fa77b0bfccd5642db65 Mon Sep 17 00:00:00 2001 From: James Fleming Date: Sat, 20 Feb 2021 11:36:55 +0100 Subject: [PATCH] sbcl: Remove substution of 'gcc' with 'cc' This substitution produces a nix-build warning, because the target string was removed in commit 7b225df9a492977b8fff0948ce93c5ab31766f64 in 2016. Remove the substition from the `postPatch` phase in `sbcl/common.nix`. --- pkgs/development/compilers/sbcl/common.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkgs/development/compilers/sbcl/common.nix b/pkgs/development/compilers/sbcl/common.nix index fac39d6c2ce1..669b9bc480bd 100644 --- a/pkgs/development/compilers/sbcl/common.nix +++ b/pkgs/development/compilers/sbcl/common.nix @@ -40,9 +40,6 @@ stdenv.mkDerivation rec { sed -e '5,$d' -i contrib/sb-bsd-sockets/tests.lisp sed -e '5,$d' -i contrib/sb-simple-streams/*test*.lisp - # Use whatever `cc` the stdenv provides - substituteInPlace src/runtime/Config.x86-64-darwin --replace gcc cc - substituteInPlace src/runtime/Config.x86-64-darwin \ --replace mmacosx-version-min=10.4 mmacosx-version-min=10.5 ''