Merge pull request #51505 from hedning/valgrind-run-autoconf

valgrind: run autoconf to pick up Makefile.am patch
This commit is contained in:
Tor Hedin Brønner 2018-12-05 11:07:40 +01:00 committed by GitHub
commit 13ee78018c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, perl, gdb, llvm, cctools, xnu, bootstrap_cmds }:
{ stdenv, fetchurl, perl, gdb, llvm, cctools, xnu, bootstrap_cmds, autoreconfHook }:
stdenv.mkDerivation rec {
name = "valgrind-3.14.0";
@ -8,7 +8,10 @@ stdenv.mkDerivation rec {
sha256 = "19ds42jwd89zrsjb94g7gizkkzipn8xik3xykrpcqxylxyzi2z03";
};
# autoreconfHook is needed to pick up patching of Makefile.am
# Remove when the patch no longer applies.
patches = [ ./coregrind-makefile-race.patch ];
nativeBuildInputs = [ autoreconfHook ];
outputs = [ "out" "dev" "man" "doc" ];