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
This commit is contained in:
Armijn Hemel 2005-12-28 13:00:09 +00:00
parent de220c973a
commit b768475a3a

View file

@ -5,5 +5,5 @@ export DESTDIR=$out
genericBuild
strip $out/bin/*
strip $out/sbin/*
#strip $out/bin/*
#strip $out/sbin/*