diff options
author | Zac Medico <zmedico@gentoo.org> | 2007-08-10 21:02:17 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2007-08-10 21:02:17 +0000 |
commit | 0db9ef409724fc8dd78fa42a77b7e217f8e53dc5 (patch) | |
tree | 21fbfd36654361fa28d874a64b79371e7c9d9a42 | |
parent | 5621acc34ed09d5fa485987f5ae39c63b87c3bac (diff) | |
download | portage-0db9ef409724fc8dd78fa42a77b7e217f8e53dc5.tar.gz portage-0db9ef409724fc8dd78fa42a77b7e217f8e53dc5.tar.bz2 portage-0db9ef409724fc8dd78fa42a77b7e217f8e53dc5.zip |
Don't generate a QA Notice if the ${S} directory doesn't exist since it might be irrelevant for some ebuilds.
svn path=/main/trunk/; revision=7587
-rwxr-xr-x | bin/ebuild.sh | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 69ed01cd2..39fcbb355 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -900,7 +900,6 @@ dyn_compile() { srcdir=${S} cd "${S}" else - eqawarn "QA Notice: Directory does not exist: S=\"${S}\"" cd "${WORKDIR}" fi #our custom version of libtool uses $S and $D to fix @@ -961,7 +960,6 @@ dyn_test() { if [ -d "${S}" ]; then cd "${S}" else - eqawarn "QA Notice: Directory does not exist: S=\"${S}\"" cd "${WORKDIR}" fi if ! hasq test $FEATURES && [ "${EBUILD_FORCE_TEST}" != "1" ]; then @@ -1000,7 +998,6 @@ dyn_install() { if [ -d "${S}" ]; then cd "${S}" else - eqawarn "QA Notice: Directory does not exist: S=\"${S}\"" cd "${WORKDIR}" fi vecho |