diff --git a/third_party/make/BUILD.mk b/third_party/make/BUILD.mk index 2d0464f67..156a812a0 100644 --- a/third_party/make/BUILD.mk +++ b/third_party/make/BUILD.mk @@ -66,7 +66,8 @@ $(THIRD_PARTY_MAKE_OBJS): private \ CFLAGS += \ -fportcosmo \ -DNO_ARCHIVES \ - -DHAVE_CONFIG_H + -DHAVE_CONFIG_H \ + -DSET_STACK_SIZE $(THIRD_PARTY_MAKE_OBJS): third_party/make/BUILD.mk diff --git a/third_party/make/signame.c b/third_party/make/signame.c index 50134c45c..f6c390623 100644 --- a/third_party/make/signame.c +++ b/third_party/make/signame.c @@ -121,10 +121,10 @@ signame_init (void) init_sig (SIGKILL, "KILL", _("Killed")); #endif #if defined (SIGBUS) - init_sig (SIGBUS, "BUS", _("Bus error")); + // init_sig (SIGBUS, "BUS", _("Bus error")); #endif #if defined (SIGSEGV) - init_sig (SIGSEGV, "SEGV", _("Segmentation fault")); + // init_sig (SIGSEGV, "SEGV", _("Segmentation fault")); #endif #if defined (SIGSYS) init_sig (SIGSYS, "SYS", _("Bad system call"));