summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/ebuild.sh10
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"