Skip to content

Commit

Permalink
sci-mathematics/z3: Use echo instead of elog.
Browse files Browse the repository at this point in the history
Thanks to mgorny for reporting and the fix, K_F, Blackb|rd and Arfrever for helping.

Package-Manager: portage-2.3.5
  • Loading branch information
markwright committed Apr 26, 2017
1 parent aa8a768 commit fac58ef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sci-mathematics/z3/z3-4.4.1.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ src_configure() {
set -- \
$(usex gmp --gmp "") \
$(usex java --java "")
elog ./configure "$@"
echo ./configure "$@" >&2
./configure "$@" || die
${EPYTHON} scripts/mk_make.py || die
}
Expand Down
4 changes: 2 additions & 2 deletions sci-mathematics/z3/z3-4.5.0.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,13 @@ src_configure() {
$(usex gmp --gmp "") \
$(usex python --python "") \
$(usex java --java "")
elog ./configure "$@"
echo ./configure "$@" >&2
# LANG=C to force external tools to output ascii text only
# otherwise configure crashes as:
# File "scripts/mk_make.py", line 21, in <module>
# UnicodeEncodeError: 'ascii' codec can't encode characters in position 80-82: ordinal not in range(128)
LANG=C ./configure "$@" || die
elog ${EPYTHON} scripts/mk_make.py "$@"
echo ${EPYTHON} scripts/mk_make.py "$@" >&2
LANG=C ${EPYTHON} scripts/mk_make.py || die
}

Expand Down

0 comments on commit fac58ef

Please sign in to comment.