commit: b8d5a27733ec5a3841d2635a0aad64d88b2a973a
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 19 22:34:22 2020 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Thu Mar 19 22:34:31 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8d5a277
dev-libs/ffcall: use einfo, not elog in src_prepare()
Noticed the post-merge output from dev-libs/ffcall when
was installing gforth. The output did not look useful:
```
* Messages for package dev-libs/ffcall-2.1:
* Patching 'Makefile.in'
* Patching 'avcall/Makefile.in'
* Patching 'callback/Makefile.in'
* Patching 'gnulib-lib/Makefile.in'
* Patching 'trampoline/Makefile.in'
* Patching 'vacall/Makefile.in'
* Patching 'callback/trampoline_r/Makefile.in'
* Patching 'callback/vacall_r/Makefile.in'
* Patching 'Makefile.in'
```
Package-Manager: Portage-2.3.94, Repoman-2.3.21
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
dev-libs/ffcall/ffcall-2.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/ffcall/ffcall-2.1.ebuild
b/dev-libs/ffcall/ffcall-2.1.ebuild
index 8a690e7e2c0..d627c694ee2 100644
--- a/dev-libs/ffcall/ffcall-2.1.ebuild
+++ b/dev-libs/ffcall/ffcall-2.1.ebuild
@@ -32,7 +32,7 @@ src_prepare() {
for mfi in {,*/,*/*/,}Makefile.in
do
- elog "Patching '${mfi}'"
+ einfo "Patching '${mfi}'"
# usually uses only assembler here, but -march=
# and -Wa, are a must to pass here.
sed -e 's/$(CC) /&$(CFLAGS) /g' \