mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
Disabling libsigsegv in gawk, because it makes me fail the 'Check'.
This disables some kind of gawk useful output on segfault. I haven't found an easy way of getting gawk use a newer libsigsegv with that problem fixed. So I do like the fedora people: disable libsigsegv. (I don't know why this did not happen in the hydra machine. I could not build gawk) svn path=/nixpkgs/branches/stdenv-updates/; revision=19070
This commit is contained in:
parent
4b31ecfb74
commit
7993499325
|
@ -10,6 +10,11 @@ stdenv.mkDerivation rec {
|
|||
|
||||
doCheck = true;
|
||||
|
||||
# The libsigsegv provided with gawk has failing tests:
|
||||
# I did like in Fedora:
|
||||
# http://rpmfind.net//linux/RPM/fedora/devel/i386/gawk-3.1.7-2.fc13.i686.html
|
||||
configureFlags = "--disable-libsigsegv";
|
||||
|
||||
meta = {
|
||||
homepage = http://www.gnu.org/software/gawk/;
|
||||
description = "GNU implementation of the Awk programming language";
|
||||
|
|
Loading…
Reference in a new issue