Revert "binutils: Add lib output"

This reverts commit 17a344a5da.
This commit is contained in:
Robin Gloster
2017-01-30 13:03:48 +01:00
parent 1c5237e25c
commit eaa9e01c1d
2 changed files with 1 additions and 26 deletions

View File

@@ -32,15 +32,9 @@ stdenv.mkDerivation rec {
# This is needed, for instance, so that running "ldd" on a binary that is
# PaX-marked to disable mprotect doesn't fail with permission denied.
./pt-pax-flags.patch
# Bfd looks in BINDIR/../lib for some plugins that don't
# exist. This is pointless (since users can't install plugins
# there) and causes a cycle between the lib and bin outputs, so
# get rid of it.
./no-plugins.patch
];
outputs = [ "out" "lib" "info" ] ++ (optional (cross == null) "dev");
outputs = [ "out" "info" ] ++ (optional (cross == null) "dev");
nativeBuildInputs = [ bison ];
buildInputs = [ zlib ];