diff options
author | Michał Górny <mgorny@gentoo.org> | 2017-02-11 12:23:55 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2017-02-11 13:07:25 +0100 |
commit | fe035821bf7477a8ea22338009fb4ff88ca773cd (patch) | |
tree | 73669e0a7f58e5014f15f959874c0d611cf66e1b /eclass/twisted-r1.eclass | |
parent | sys-devel/clang: Fix building extra tools in -9999 (diff) | |
download | gentoo-fe035821bf7477a8ea22338009fb4ff88ca773cd.tar.gz gentoo-fe035821bf7477a8ea22338009fb4ff88ca773cd.tar.bz2 gentoo-fe035821bf7477a8ea22338009fb4ff88ca773cd.zip |
twisted-r1.eclass: Replace TEST_DIR eqawarn with fatal error
Diffstat (limited to 'eclass/twisted-r1.eclass')
-rw-r--r-- | eclass/twisted-r1.eclass | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/eclass/twisted-r1.eclass b/eclass/twisted-r1.eclass index 5b10491d25cf..d8c9b3089435 100644 --- a/eclass/twisted-r1.eclass +++ b/eclass/twisted-r1.eclass @@ -135,9 +135,10 @@ twisted-r1_python_test() { distutils_install_for_testing || die if [[ ${TEST_DIR} != ${BUILD_DIR}/test ]]; then - eqawarn "twisted-r1 integrity check failed." - eqawarn "TEST_DIR: ${TEST_DIR}" - eqawarn "expected: ${BUILD_DIR}/test" + eerror "twisted-r1 integrity check failed." + eerror "TEST_DIR: ${TEST_DIR}" + eerror "expected: ${BUILD_DIR}/test" + die "TEST_DIR integrity check failed" fi cd "${TEST_DIR}"/lib || die |