Diff binutils-hppa64-2.40-r7 with a binutils-hppa64-2.41-r1

/usr/portage/sys-devel/binutils-hppa64/binutils-hppa64-2.41-r1.ebuild 2023-10-09 14:52:35.476368501 +0300
22 22
# PATCH_DEV          - Use download URI https://dev.gentoo.org/~{PATCH_DEV}/distfiles/...
23 23
#                      for the patchsets
24 24

  
25
PATCH_VER=6
25
PATCH_VER=2
26 26
PATCH_DEV=dilfridge
27 27

  
28 28
if [[ ${PV} == 9999* ]]; then
......
241 241
		--libdir="${EPREFIX}"${LIBPATH}
242 242
		--libexecdir="${EPREFIX}"${LIBPATH}
243 243
		--includedir="${EPREFIX}"${INCPATH}
244
		# portage's econf() does not detect presence of --d-d-t
245
		# because it greps only top-level ./configure. But not
246
		# libiberty's or bfd's configure.
247
		--disable-dependency-tracking
248
		--disable-silent-rules
244 249
		--enable-obsolete
245 250
		--enable-shared
246 251
		--enable-threads
......
309 314
		fi
310 315
	fi
311 316

  
312
	ECONF_SOURCE="${S}" econf "${myconf[@]}" || die
317
	ECONF_SOURCE="${S}" econf "${myconf[@]}"
313 318

  
314 319
	# Prevent makeinfo from running if doc is unset.
315 320
	if ! use doc ; then
......
323 328
	cd "${MY_BUILDDIR}" || die
324 329

  
325 330
	# see Note [tooldir hack for ldscripts]
326
	emake V=1 tooldir="${EPREFIX}${TOOLPATH}" all
331
	emake tooldir="${EPREFIX}${TOOLPATH}" all
327 332

  
328 333
	# only build info pages if the user wants them
329 334
	if use doc ; then
330
		emake V=1 info
335
		emake info
331 336
	fi
332 337

  
333 338
	# we nuke the manpages when we're left with junk
......
341 346
	# bug #637066
342 347
	filter-flags -Wall -Wreturn-type
343 348

  
344
	emake -k V=1 check
349
	emake -k check
345 350
}
346 351

  
347 352
src_install() {
......
350 355
	cd "${MY_BUILDDIR}" || die
351 356

  
352 357
	# see Note [tooldir hack for ldscripts]
353
	emake V=1 DESTDIR="${D}" tooldir="${EPREFIX}${LIBPATH}" install
358
	emake DESTDIR="${D}" tooldir="${EPREFIX}${LIBPATH}" install
354 359
	rm -rf "${ED}"/${LIBPATH}/bin || die
355 360
	use static-libs || find "${ED}" -name '*.la' -delete
356 361

  
Thank you!