input-utils: Fix cross-compilation
We actually don't need to `strip` using `install`. Stripping is already part of the fixup. This ends up being a fix we can apply universally, but works around an issue where `install` doesn't know about the prefixed `strip` binary.
This commit is contained in:
parent
467ce5a9f4
commit
68096cab7f
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
makeFlags = [
|
||||
"prefix=$(out)"
|
||||
"STRIP=-s"
|
||||
"STRIP="
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
|
Loading…
Add table
Reference in a new issue