Revert "rsync: Work around upstream cross-compilation issue"
This reverts commit 49edde0905
.
Our packaged rsync version now contains the fix.
This commit is contained in:
parent
6c93364cc2
commit
bf0aa68088
1 changed files with 1 additions and 8 deletions
|
@ -53,14 +53,7 @@ stdenv.mkDerivation rec {
|
||||||
# disable the included zlib explicitly as it otherwise still compiles and
|
# disable the included zlib explicitly as it otherwise still compiles and
|
||||||
# links them even.
|
# links them even.
|
||||||
"--with-included-zlib=no"
|
"--with-included-zlib=no"
|
||||||
]
|
];
|
||||||
# Work around issue with cross-compilation:
|
|
||||||
# configure.sh: error: cannot run test program while cross compiling
|
|
||||||
# Remove once 3.2.4 or more recent is released.
|
|
||||||
# The following PR should fix the cross-compilation issue.
|
|
||||||
# Test using `nix-build -A pkgsCross.aarch64-multiplatform.rsync`.
|
|
||||||
# https://github.com/WayneD/rsync/commit/b7fab6f285ff0ff3816b109a8c3131b6ded0b484
|
|
||||||
++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) "--enable-simd=no";
|
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue