libbfd: simplify per reviewer feedback

Changing postPatch to postAutoreconf is needed
when updateAutotoolsGnuConfigScriptsHook is used
or the directory change happens too early.
This commit is contained in:
Will Dietz 2018-02-13 11:10:35 -06:00
parent 2bfe036f42
commit a65aa78e14

View File

@ -1,5 +1,5 @@
{ stdenv
, fetchurl, fetchpatch, autoreconfHook264, buildPackages, bison, binutils-raw
, fetchurl, fetchpatch, autoreconfHook264, bison, binutils-raw
, libiberty, zlib
}:
@ -18,30 +18,20 @@ stdenv.mkDerivation rec {
];
# We just want to build libbfd
preConfigure = ''
postAutoreconf = ''
cd bfd
'';
depsBuildBuilds = [ buildPackages.stdenv.cc ];
nativeBuildInputs = [ autoreconfHook264 bison ];
buildInputs = [ libiberty zlib ];
configurePlatforms = [ "build" "host" "target" ];
configureFlags = [
"--enable-targets=all" "--enable-64-bit-bfd"
"--enable-install-libbfd"
"--enable-shared"
"--with-system-zlib"
"CC_FOR_BUILD=$(CC)"
];
postInstall = stdenv.lib.optionalString (stdenv.hostPlatform != stdenv.targetPlatform) ''
# the build system likes to move things into atypical locations
mkdir -p $dev
mv $out/${stdenv.hostPlatform.config}/${stdenv.targetPlatform.config}/include $dev/include
mv $out/${stdenv.hostPlatform.config}/${stdenv.targetPlatform.config}/lib $out/lib
'';
enableParallelBuilding = true;
meta = with stdenv.lib; {