From 49325d8098cc7a900f7e59bfb7999ae7858c6604 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Adrian=20Schr=C3=B6ter?= Date: Thu, 10 Dec 2009 14:50:13 +0100 Subject: [PATCH] Drop SIGTERM handler, causing problems at build time. Actually also SIGHUP trap should go, but this might require a patched ubuntu package. --- build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build b/build index bfd4b57..b585f87 100755 --- a/build +++ b/build @@ -419,11 +419,11 @@ detect_vm_2nd_stage() fi if test $$ -eq 1 ; then # ignore special init signals if we're init - trap '' TERM HUP + trap '' HUP $0 "$@" cleanup_and_exit 1 fi - trap - TERM HUP + trap - HUP echo "2nd stage started in virtual machine" BUILD_ROOT=/ BUILD_DIR=/.build -- 2.7.4