Disable sigterm
diff --git a/libbb/unzip.c b/libbb/unzip.c
index 576fe34..b843ec8 100644
--- a/libbb/unzip.c
+++ b/libbb/unzip.c
@@ -912,9 +912,9 @@
 		(void) signal(SIGINT, (sig_type) abort_gzip);
 	}
 #ifdef SIGTERM
-	if (signal(SIGTERM, SIG_IGN) != SIG_IGN) {
-		(void) signal(SIGTERM, (sig_type) abort_gzip);
-	}
+//	if (signal(SIGTERM, SIG_IGN) != SIG_IGN) {
+//		(void) signal(SIGTERM, (sig_type) abort_gzip);
+//	}
 #endif
 #ifdef SIGHUP
 	if (signal(SIGHUP, SIG_IGN) != SIG_IGN) {