From b768475a3a9eefd9b86c22f175c4ec964e721af6 Mon Sep 17 00:00:00 2001 From: Armijn Hemel Date: Wed, 28 Dec 2005 13:00:09 +0000 Subject: [PATCH] don't strip the binaries in $out/bin and $out/sbin. strip doesn't recognize the format of one of the files (a shellscript) and thus returns an error code, which can safely be ignored, but from which Nix will conclude the build has failed. svn path=/nixpkgs/trunk/; revision=4454 --- pkgs/os-specific/linux/util-linux-static/builder.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/util-linux-static/builder.sh b/pkgs/os-specific/linux/util-linux-static/builder.sh index 5adc2456706..b0603104573 100644 --- a/pkgs/os-specific/linux/util-linux-static/builder.sh +++ b/pkgs/os-specific/linux/util-linux-static/builder.sh @@ -5,5 +5,5 @@ export DESTDIR=$out genericBuild -strip $out/bin/* -strip $out/sbin/* +#strip $out/bin/* +#strip $out/sbin/*