comment out font warning argument to groff 1.23

The font warnings are no longer being generated as of b73e4815,
so there is no need for the '-W font' argument to groff at this time.
This commit is contained in:
nhmall
2023-11-02 10:31:50 -04:00
parent 8cd032a6aa
commit 196fd41817

View File

@@ -65,18 +65,17 @@ CPLUSPLUS_NEEDED = 1
endif
endif
# suppress several hundred warnings with groff 1.23
#detection of groff
NROFFISGROFF := $(shell echo `nroff --version | grep "GNU groff version"`)
#NROFFISGROFF := $(shell echo `nroff --version | grep "GNU groff version"`)
#$(info NROFFISGROFF=$(NROFFISGROFF))
ifneq "$(NROFFISGROFF)" ""
#ifneq "$(NROFFISGROFF)" ""
# get the version of groff
GROFFGE123 := $(shell expr `echo $(NROFFISGROFF) | cut -f2 -d.` \>= 23)
#GROFFGE123 := $(shell expr `echo $(NROFFISGROFF) | cut -f2 -d.` \>= 23)
#$(info GROFFGE123=$(GROFFGE123))
ifeq "$(GROFFGE123)" "1"
NROFF_FLAGS = -W font
endif
endif # NROFFISGROFF
#ifeq "$(GROFFGE123)" "1"
#NROFF_FLAGS = -W font
#endif
#endif # NROFFISGROFF
#end of hints/include/multiw-3.370
#------------------------------------------------------------------------------