diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2020-03-19 22:34:22 +0000 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2020-03-19 22:34:31 +0000 |
commit | b8d5a27733ec5a3841d2635a0aad64d88b2a973a (patch) | |
tree | dbec02f82d0c29b88590a5713ed3a570d25e78da /dev-libs/ffcall | |
parent | media-libs/vulkan-layers: Add missing [${MULTILIB_USEDEP}] (diff) | |
download | gentoo-b8d5a27733ec5a3841d2635a0aad64d88b2a973a.tar.gz gentoo-b8d5a27733ec5a3841d2635a0aad64d88b2a973a.tar.bz2 gentoo-b8d5a27733ec5a3841d2635a0aad64d88b2a973a.zip |
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@gentoo.org>
Diffstat (limited to 'dev-libs/ffcall')
-rw-r--r-- | dev-libs/ffcall/ffcall-2.1.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev-libs/ffcall/ffcall-2.1.ebuild b/dev-libs/ffcall/ffcall-2.1.ebuild index 8a690e7e2c06..d627c694ee26 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' \ |