- redirecting output of first two checkboot runs to /dev/null so the

ignored exception, if any, does not show up in the make output.
    s/Mf-base

original commit: 4de3eab4d76feea17431099f798a343a6205e50e
This commit is contained in:
dyb 2019-01-11 18:10:38 -08:00
parent 03a33fb4fc
commit 20ab41bb10
2 changed files with 5 additions and 2 deletions

3
LOG
View File

@ -1027,3 +1027,6 @@
cpnanopass.ss, x86_64.ss, x86.ss, foreign2.c, foreign.ms
- added initialization of seginfo sorted and trigger_ephemerons fields.
segment.c
- redirecting output of first two checkboot runs to /dev/null so the
ignored exception, if any, does not show up in the make output.
s/Mf-base

View File

@ -162,10 +162,10 @@ all: bootall ${Cheader} ${Cequates}
# same as the last, i.e., the system is properly bootstrapped.
allx: prettyclean saveboot
$(MAKE) all
if $(MAKE) checkboot; then echo fine ; else\
if $(MAKE) checkboot > /dev/null 2>&1; then echo fine ; else\
$(MAKE) prettyclean saveboot &&\
$(MAKE) all &&\
if $(MAKE) checkboot; then echo fine ; else\
if $(MAKE) checkboot > /dev/null 2>&1; then echo fine ; else\
$(MAKE) prettyclean saveboot &&\
$(MAKE) all &&\
$(MAKE) checkboot ;\