*/*: fix elog --> einfo

Fixing my mistake from previous changes. I mistook between the two (I
want just a nice output in build.log, not outputing it to the user).

Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
This commit is contained in:
Arthur Zamarin 2025-03-18 20:40:49 +02:00
parent bbbb0e637d
commit 12f3672a64
No known key found for this signature in database
GPG Key ID: 02A0AF503D120504
7 changed files with 7 additions and 7 deletions

View File

@ -30,7 +30,7 @@ src_compile() {
build
if ! tc-is-cross-compiler; then
elog "generating shell completion files"
einfo "generating shell completion files"
bin/${PN} completion bash > ${PN}.bash || die
bin/${PN} completion zsh > ${PN}.zsh || die
bin/${PN} completion fish > ${PN}.fish || die

View File

@ -26,7 +26,7 @@ src_compile() {
ego build "${myegoargs[@]}" -o ${PN} main.go
if ! tc-is-cross-compiler; then
elog "generating shell completion files"
einfo "generating shell completion files"
./kompose completion bash > ${PN}.bash || die
./kompose completion zsh > ${PN}.zsh || die
./kompose completion fish > ${PN}.fish || die

View File

@ -21,7 +21,7 @@ src_compile() {
ego build -o jira ./cmd/jira
if ! tc-is-cross-compiler; then
elog "generating shell completion files"
einfo "generating shell completion files"
# those commands exit OK with 1, so we can't use die
./jira --completion-script-bash > jira.bash

View File

@ -24,7 +24,7 @@ src_compile() {
ego build ./cmd/rdap
if ! tc-is-cross-compiler; then
elog "generating shell completion files"
einfo "generating shell completion files"
# those commands exit OK with 1, so we can't use die
./rdap --completion-script-bash > rdap.bash

View File

@ -27,7 +27,7 @@ src_compile() {
emake -j1 GOFLAGS=-v GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN}
if ! tc-is-cross-compiler; then
elog "generating shell completion files"
einfo "generating shell completion files"
_output/bin/${PN} completion bash > ${PN}.bash || die
_output/bin/${PN} completion zsh > ${PN}.zsh || die
fi

View File

@ -27,7 +27,7 @@ src_compile() {
emake -j1 GOFLAGS="${GOFLAGS}" GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN}
if ! tc-is-cross-compiler; then
elog "generating shell completion files"
einfo "generating shell completion files"
_output/bin/${PN} completion bash > ${PN}.bash || die
_output/bin/${PN} completion zsh > ${PN}.zsh || die
fi

View File

@ -26,7 +26,7 @@ src_compile() {
WHAT=cmd/${PN}
if ! tc-is-cross-compiler; then
elog "generating shell completion files"
einfo "generating shell completion files"
_output/bin/${PN} completion bash > ${PN}.bash || die
_output/bin/${PN} completion zsh > ${PN}.zsh || die
_output/bin/${PN} completion fish > ${PN}.fish || die