diff options
author | Zac Medico <zmedico@gentoo.org> | 2009-11-25 21:59:02 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2009-11-25 21:59:02 +0000 |
commit | cac5790bf959111496131602a7aa48026ac26872 (patch) | |
tree | 31e2a9f934f4f8252e79b4f2e1ffe55803dab150 | |
parent | dea8fc2a93f59ca0191313d3f807a4726e58d3e3 (diff) | |
download | portage-cac5790bf959111496131602a7aa48026ac26872.tar.gz portage-cac5790bf959111496131602a7aa48026ac26872.tar.bz2 portage-cac5790bf959111496131602a7aa48026ac26872.zip |
Use einfo instead of ewarn for the "Skipping make test/check due to ebuild
restriction." message.
svn path=/main/trunk/; revision=14885
-rwxr-xr-x | bin/ebuild.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 38fdea891..c99e54022 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -1001,7 +1001,7 @@ dyn_test() { if ! hasq test $FEATURES && [ "${EBUILD_FORCE_TEST}" != "1" ]; then vecho ">>> Test phase [not enabled]: ${CATEGORY}/${PF}" elif hasq test $RESTRICT; then - ewarn "Skipping make test/check due to ebuild restriction." + einfo "Skipping make test/check due to ebuild restriction." vecho ">>> Test phase [explicitly disabled]: ${CATEGORY}/${PF}" else local save_sp=${SANDBOX_PREDICT} |