From: Jakub Jirutka Date: Thu, 28 Oct 2021 01:27:53 +0200 Subject: [PATCH] Disable HTML docs, install only man pages HTML docs are big and they are available only anyway. diff --git a/doc/src/sgml/Makefile b/doc/src/sgml/Makefile index 11aac91..9f7aa7d 100644 --- a/doc/src/sgml/Makefile +++ b/doc/src/sgml/Makefile @@ -16,7 +16,7 @@ # to want to use. html: # Note that all is *not* the default target in this directory -all: html man +all: man # We don't need the tree-wide headers or install support here. NO_GENERATED_HEADERS=yes @@ -208,14 +208,14 @@ check: postgres.sgml $(ALL_SGML) check-tabs check-nbsp ## Install ## -install: install-html install-man +install: install-man installdirs: - $(MKDIR_P) '$(DESTDIR)$(htmldir)'/html $(addprefix '$(DESTDIR)$(mandir)'/man, 1 3 $(sqlmansectnum)) + $(MKDIR_P) $(addprefix '$(DESTDIR)$(mandir)'/man, 1 3 $(sqlmansectnum)) # If the install used a man directory shared with other applications, this will remove all files. uninstall: - rm -f '$(DESTDIR)$(htmldir)/html/'* $(addprefix '$(DESTDIR)$(mandir)'/man, 1/* 3/* $(sqlmansectnum)/*) + rm -f $(addprefix '$(DESTDIR)$(mandir)'/man, 1/* 3/* $(sqlmansectnum)/*) ## Install html