sci-mathematics/z3: Use echo instead of elog.
authorMark Wright <gienah@gentoo.org>
Wed, 26 Apr 2017 08:12:07 +0000 (18:12 +1000)
committerMark Wright <gienah@gentoo.org>
Wed, 26 Apr 2017 08:12:46 +0000 (18:12 +1000)
Thanks to mgorny for reporting and the fix, K_F, Blackb|rd and Arfrever for helping.

Package-Manager: portage-2.3.5

sci-mathematics/z3/z3-4.4.1.ebuild
sci-mathematics/z3/z3-4.5.0.ebuild

index 438fa4dd5046165caf3d3fd2cc15de1d2424505f..8fd027f17feb78552c5f5484c7813073b64102e4 100644 (file)
@@ -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
 }
index 6f26e54e0d26277e97c97fd43a10a2010b3919a9..5f19493a454c1ced16be726e328018cc1f3235e7 100644 (file)
@@ -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
 }