mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2026-05-06 07:27:03 -04:00
dev-cpp/cpp-httplib: fix 32-bit condition in src_test
README says that 32-bit arches aren't supported, so we're going to drop keywords there + mask, but let's fix this while here. Bug: https://bugs.gentoo.org/973312 Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
@@ -77,9 +77,9 @@ src_configure() {
|
||||
}
|
||||
|
||||
multilib_src_test() {
|
||||
if [[ ${ABI} == x86 ]]; then
|
||||
if [[ $(tc-get-ptr-size) == 4 ]] ; then
|
||||
ewarn "Upstream no longer supports 32 bits:"
|
||||
ewarn https://github.com/yhirose/cpp-httplib/issues/2148
|
||||
ewarn "https://github.com/yhirose/cpp-httplib/issues/2148"
|
||||
return
|
||||
fi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user