Diff glibc-2.43-r3 with a glibc-2.43-r4

/usr/portage/sys-libs/glibc/glibc-2.43-r4.ebuild 2026-09-03 20:03:05.326550721 +0300
12 12
EMULTILIB_PKG="true"
13 13

  
14 14
# Gentoo patchset (ignored for live ebuilds)
15
PATCH_VER=4
15
PATCH_VER=5
16 16

  
17 17
# gcc mulitilib bootstrap files version
18 18
GCC_BOOTSTRAP_VER=20201208
......
923 923
			die "Found directory (${ESYSROOT}/usr/lib/include) which will break build (bug #833620)!"
924 924
		fi
925 925

  
926
		if [[ ${CTARGET} == *-linux* ]] ; then
926
		if is_linux ; then
927 927
			local run_kv build_kv want_kv
928 928

  
929 929
			run_kv=$(g_get_running_KV)
......
1616 1616

  
1617 1617
	if is_hurd && has amd64 $(get_install_abis) ; then
1618 1618
		# First, let's check for sanity
1619
		if [[ -f "${D}$(alt_prefix)/lib/ld-x86-64.so.1" ]] ; then
1619
		if [[ -f "${D}/$(alt_prefix)/lib/ld-x86-64.so.1" ]] ; then
1620 1620
			die "Somehow your amd64 hurd glibc installed /lib/ld-x86-64.so.1 ... this should not happen."
1621 1621
		fi
1622 1622

  
......
1626 1626

  
1627 1627
	if is_hurd && has x86 $(get_install_abis) ; then
1628 1628
		# First, let's check for sanity
1629
		if [[ -f "${D}$(alt_prefix)/$(get_abi_LIBDIR x86)/ld.so" ]] ; then
1629
		if [[ -f "${D}/$(alt_prefix)/$(get_abi_LIBDIR x86)/ld.so" ]] ; then
1630 1630
			die "Somehow your x86 hurd glibc installed ld.so ... this should not happen."
1631 1631
		fi
1632 1632

  
Thank you!