about summary refs log tree commit diff
path: root/pkgs/tools/text/gawk
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-12-21 22:46:18 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-12-21 22:46:18 +0000
commit7993499325aca0823a97d7770f0bc5d79a6dc14c (patch)
tree539417cab2ac2c58bd91a9b7d9932a07e9578a14 /pkgs/tools/text/gawk
parent4b31ecfb7423bd9f6b2a85103eff546bf2f4fe32 (diff)
downloadnixlib-7993499325aca0823a97d7770f0bc5d79a6dc14c.tar
nixlib-7993499325aca0823a97d7770f0bc5d79a6dc14c.tar.gz
nixlib-7993499325aca0823a97d7770f0bc5d79a6dc14c.tar.bz2
nixlib-7993499325aca0823a97d7770f0bc5d79a6dc14c.tar.lz
nixlib-7993499325aca0823a97d7770f0bc5d79a6dc14c.tar.xz
nixlib-7993499325aca0823a97d7770f0bc5d79a6dc14c.tar.zst
nixlib-7993499325aca0823a97d7770f0bc5d79a6dc14c.zip
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
Diffstat (limited to 'pkgs/tools/text/gawk')
-rw-r--r--pkgs/tools/text/gawk/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/tools/text/gawk/default.nix b/pkgs/tools/text/gawk/default.nix
index 138b4e01f78b..839364ddb5bb 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";