diff options
author | Zac Medico <zmedico@gentoo.org> | 2006-12-30 10:32:03 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2006-12-30 10:32:03 +0000 |
commit | 0d55b39ea89067117377e2fd66a5e16609a25199 (patch) | |
tree | 474ec28f451180659bee268c2f6c13b212daadc9 | |
parent | e78b119e2a4869e175e84fe735b02c4d26a9601f (diff) | |
download | portage-0d55b39ea89067117377e2fd66a5e16609a25199.tar.gz portage-0d55b39ea89067117377e2fd66a5e16609a25199.tar.bz2 portage-0d55b39ea89067117377e2fd66a5e16609a25199.zip |
Punt the abort_unpack() handler since it's pointless anyway.
svn path=/main/trunk/; revision=5425
-rwxr-xr-x | bin/ebuild.sh | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 3e793a6ec..18409bd03 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" |