From 916b7d9dff05c860fadf39d028a8186fefb7d7cc Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 2 Apr 2012 18:18:31 +0000 Subject: [PATCH] Reverted the patchelf modification to coreutils. It's not obvious to me why that change is needed (and it would need further work to generalize to non-Linux platforms, too). Thanks to Eelco for catching this. svn path=/nixpkgs/branches/stdenv-updates/; revision=33541 --- pkgs/tools/misc/coreutils/default.nix | 8 -------- 1 file changed, 8 deletions(-) diff --git a/pkgs/tools/misc/coreutils/default.nix b/pkgs/tools/misc/coreutils/default.nix index 9ccb5226cedc..597ab802d74e 100644 --- a/pkgs/tools/misc/coreutils/default.nix +++ b/pkgs/tools/misc/coreutils/default.nix @@ -44,14 +44,6 @@ stdenv.mkDerivation rec { NIX_LDFLAGS = stdenv.lib.optionalString selinuxSupport "-lsepol"; - # the coreutils install calls the ginstall just compiled, before we have - # a chance to patchelf it. - libPath = stdenv.lib.makeLibraryPath ([stdenv.gcc.libc] ++ buildInputs); - - preInstall = '' - patchelf --set-rpath $libPath src/ginstall - ''; - meta = { homepage = http://www.gnu.org/software/coreutils/; description = "The basic file, shell and text manipulation utilities of the GNU operating system";