summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2006-12-30 10:32:03 +0000
committerZac Medico <zmedico@gentoo.org>2006-12-30 10:32:03 +0000
commit0d55b39ea89067117377e2fd66a5e16609a25199 (patch)
tree474ec28f451180659bee268c2f6c13b212daadc9 /bin/ebuild.sh
parentFix 'TypeError: unpack non-sequence' that occurs if myparent is None. (diff)
downloadportage-multirepo-0d55b39ea89067117377e2fd66a5e16609a25199.tar.gz
portage-multirepo-0d55b39ea89067117377e2fd66a5e16609a25199.tar.bz2
portage-multirepo-0d55b39ea89067117377e2fd66a5e16609a25199.zip
Punt the abort_unpack() handler since it's pointless anyway.
svn path=/main/trunk/; revision=5425
Diffstat (limited to 'bin/ebuild.sh')
-rwxr-xr-xbin/ebuild.sh10
1 files changed, 0 insertions, 10 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh
index 3e793a6e..18409bd0 100755
--- a/bin/ebuild.sh
+++ b/bin/ebuild.sh
@@ -684,7 +684,6 @@ dyn_setup() {
}
dyn_unpack() {
- trap "abort_unpack" SIGINT SIGQUIT
[ "$(type -t pre_src_unpack)" == "function" ] && pre_src_unpack
local newstuff="no"
if [ -e "${WORKDIR}" ]; then
@@ -735,8 +734,6 @@ dyn_unpack() {
cd "${PORTAGE_BUILDDIR}"
[ "$(type -t post_src_unpack)" == "function" ] && post_src_unpack
-
- trap SIGINT SIGQUIT
}
dyn_clean() {
@@ -874,13 +871,6 @@ abort_compile() {
exit 1
}
-abort_unpack() {
- abort_handler "src_unpack" $1
- rm -f "${PORTAGE_BUILDDIR}/.unpacked"
- rm -rf "${PORTAGE_BUILDDIR}/work"
- exit 1
-}
-
abort_test() {
abort_handler "dyn_test" $1
rm -f "${PORTAGE_BUILDDIR}/.tested"