Merge pull request #110829 from r-burns/riscv-coreutils
coreutils: fix build on riscv
This commit is contained in:
commit
2d559b6128
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ stdenv.mkDerivation (rec {
|
|||
|
||||
patches = optional stdenv.hostPlatform.isCygwin ./coreutils-8.23-4.cygwin.patch
|
||||
# included on coreutils master; TODO: apply unconditionally, I guess
|
||||
++ optional stdenv.hostPlatform.isAarch64 ./sys-getdents-undeclared.patch
|
||||
++ optional (with stdenv.hostPlatform; isAarch64 || isRiscV) ./sys-getdents-undeclared.patch
|
||||
# fix gnulib tests on 32-bit ARM. Included on coreutils master.
|
||||
# https://lists.gnu.org/r/bug-gnulib/2020-08/msg00225.html
|
||||
++ optional stdenv.hostPlatform.isAarch32 ./fix-gnulib-tests-arm.patch;
|
||||
|
|
Loading…
Reference in a new issue