diff options
author | 2009-11-25 22:32:53 +0000 | |
---|---|---|
committer | 2009-11-25 22:32:53 +0000 | |
commit | 5784e4d1a6742b03bb93ccacc04c4e693aeb93bf (patch) | |
tree | de4149d4773d37c883b3a45d8697faca555fc439 | |
parent | Add a test case which simply compiles all modules, useful for testing syntax (diff) | |
download | portage-multirepo-5784e4d1a6742b03bb93ccacc04c4e693aeb93bf.tar.gz portage-multirepo-5784e4d1a6742b03bb93ccacc04c4e693aeb93bf.tar.bz2 portage-multirepo-5784e4d1a6742b03bb93ccacc04c4e693aeb93bf.zip |
Use einfo instead of ewarn for the "Skipping make test/check due to ebuild
restriction." message. (trunk r14885)
svn path=/main/branches/2.1.7/; revision=14890
-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 8086bc69..49f2ee72 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -1007,7 +1007,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} |