From 7993499325aca0823a97d7770f0bc5d79a6dc14c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Mon, 21 Dec 2009 22:46:18 +0000 Subject: [PATCH] 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 --- pkgs/tools/text/gawk/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/tools/text/gawk/default.nix b/pkgs/tools/text/gawk/default.nix index 138b4e01f78..839364ddb5b 100644 --- a/pkgs/tools/text/gawk/default.nix +++ b/pkgs/tools/text/gawk/default.nix @@ -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";