1
0
Fork 1
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:
Lluís Batlle i Rossell 2009-12-21 22:46:18 +00:00
parent 4b31ecfb74
commit 7993499325

View file

@ -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";