Diff patch-2.7.6-r6 with a patch-2.7.6-r8

/usr/portage/sys-devel/patch/patch-2.7.6-r8.ebuild 2025-12-22 20:18:07.000888591 +0300
43 43
	"${FILESDIR}"/${PN}-2.7.6-CVE-2019-13636.patch
44 44
	"${FILESDIR}"/${PN}-2.7.6-CVE-2019-13638.patch
45 45
	"${FILESDIR}"/${PN}-2.7.6-Avoid-invalid-memory-access-in-context-format-diffs.patch
46
	"${FILESDIR}"/${PN}-2.7.6-configure-mkdir.patch
46
	"${FILESDIR}"/${PN}-2.7.6-configure-mkdir-spruced-up.patch
47
	"${FILESDIR}"/${PN}-2.7.6-ndebug-assert-hash-table.patch
47 48
)
48 49

  
49 50
src_unpack() {
......
67 68
		# rename to gpatch for better BSD compatibility
68 69
		--program-prefix=g
69 70
	)
70
	# Do not let $ED mess up the search for `ed` 470210.
71
	ac_cv_path_ED=$(type -P ed) \
71
	# Do not let $ED or $PATH (split-usr) mess up the search for `ed`:
72
	# bug 470210 / bug 957593
73
	ac_cv_path_ED="${EPREFIX}/bin/ed" \
72 74
		econf "${myeconfargs[@]}"
73 75
}
74 76

  
Thank you!