coreutils: fix build on riscv
RISC-V has the same issue as ARM64 with coreutils. Fixes pkgsCross.riscv64.coreutils
This commit is contained in:
parent
8baac2af75
commit
bcece861e8
@ -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 New Issue
Block a user