mdadm: unset STRIP

Commit 093cc00cdd, sets the STRIP environment
variable by default, but this confuses the mdadm Makefile, which uses STRIP as a
flag to `install'.
This commit is contained in:
Thomas Tuegel 2017-07-19 07:59:40 -05:00
parent bd2e91e3a2
commit 7d010ab5f4
No known key found for this signature in database
GPG Key ID: 22CBF5249D4B4D59

View File

@ -22,6 +22,7 @@ stdenv.mkDerivation rec {
makeFlags = [
"NIXOS=1" "INSTALL=install" "INSTALL_BINDIR=$(out)/sbin"
"MANDIR=$(out)/share/man" "RUN_DIR=/dev/.mdadm"
"STRIP="
] ++ stdenv.lib.optionals (hostPlatform != buildPlatform) [
"CROSS_COMPILE=${stdenv.cc.prefix}"
];