diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2020-06-28 13:43:50 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2020-06-28 13:43:50 -0400 |
commit | 07ce433b3b501ed958578cdc5df9a9310558f2d0 (patch) | |
tree | 316a9810af75630970104ffd493f47128fedb926 /net-misc | |
parent | net-misc/rsync: disable ipv6 in a different way (diff) | |
download | musl-07ce433b3b501ed958578cdc5df9a9310558f2d0.tar.gz musl-07ce433b3b501ed958578cdc5df9a9310558f2d0.tar.bz2 musl-07ce433b3b501ed958578cdc5df9a9310558f2d0.zip |
net-misc/rsync: hard disable simd
Package-Manager: Portage-2.3.99, Repoman-2.3.23
RepoMan-Options: --force
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/rsync/rsync-3.2.0-r1.ebuild | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/net-misc/rsync/rsync-3.2.0-r1.ebuild b/net-misc/rsync/rsync-3.2.0-r1.ebuild index 89a4e30b..76c31276 100644 --- a/net-misc/rsync/rsync-3.2.0-r1.ebuild +++ b/net-misc/rsync/rsync-3.2.0-r1.ebuild @@ -85,12 +85,7 @@ src_configure() { $(use_enable zstd) ) - if [[ "${ARCH}" == "amd64" ]] ; then - # SIMD is only available for x86_64 right now (#728868) - myeconfargs+=( $(use_enable cpu_flags_x86_sse2 simd) ) - else - myeconfargs+=( --disable-simd ) - fi + myeconfargs+=( --disable-simd ) econf "${myeconfargs[@]}" [[ "${PV}" == *9999 ]] || touch proto.h-tstamp #421625 |