mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
libbacktrace: Disable mtest_minidebug test on powerpc64-linux (#513495)
This commit is contained in:
commit
dff68f216e
1 changed files with 9 additions and 0 deletions
|
|
@ -29,6 +29,15 @@ stdenv.mkDerivation {
|
|||
./0004-libbacktrace-Support-NIX_DEBUG_INFO_DIRS-environment.patch
|
||||
];
|
||||
|
||||
# https://github.com/ianlancetaylor/libbacktrace/issues/163
|
||||
postPatch =
|
||||
lib.optionalString
|
||||
(stdenv.hostPlatform.isPower64 && stdenv.hostPlatform.isBigEndian && stdenv.hostPlatform.isAbiElfv1)
|
||||
''
|
||||
substituteInPlace Makefile.am \
|
||||
--replace-fail 'MAKETESTS += mtest_minidebug' '# MAKETESTS += mtest_minidebug'
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [
|
||||
autoreconfHook
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue