From f632e71c67c45c638ec056a26086464a433de9f7 Mon Sep 17 00:00:00 2001 From: Nate Bargmann Date: Thu, 2 Aug 2018 07:57:52 -0500 Subject: [PATCH] Include section 7 pages in W32/64 binary builds --- scripts/build-w32.sh | 8 ++++---- scripts/build-w64.sh | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/scripts/build-w32.sh b/scripts/build-w32.sh index d18efd65c..92ead58ed 100644 --- a/scripts/build-w32.sh +++ b/scripts/build-w32.sh @@ -66,9 +66,9 @@ This software is copyrighted. The library license is LGPL, and the *.EXE files licenses are GPL. Hamlib comes WITHOUT ANY WARRANTY. See the LICENSE.txt, COPYING.txt, and COPYING.LIB.txt files. -A draft user manual in HTML format is included in the doc directory. The nroff -manual pages of the utilities not included in the user manual are converted to -HTML and included in the doc directory. +A draft user manual in HTML format is included in the doc directory. Supporting +documentation in the form of Unix manual pages have also been included after +being converted to HTML. Installation and Configuration @@ -205,7 +205,7 @@ for f in AUTHORS ChangeLog COPYING COPYING.LIB LICENSE README README.betatester cp -a ${f} ${ZIP_DIR}/${f}.txt ; todos ${ZIP_DIR}/${f}.txt ; done # Generate HTML documents from nroff formatted man files -for f in doc/man1/*.1; do \ +for f in doc/man1/*.1 doc/man7/*.7; do \ /usr/bin/groff -mandoc -Thtml >${f}.html ${f} cp -a ${f}.html ${ZIP_DIR}/doc/. ; done diff --git a/scripts/build-w64.sh b/scripts/build-w64.sh index 7b8648fce..e4838f8eb 100644 --- a/scripts/build-w64.sh +++ b/scripts/build-w64.sh @@ -70,9 +70,9 @@ This software is copyrighted. The library license is LGPL, and the *.EXE files licenses are GPL. Hamlib comes WITHOUT ANY WARRANTY. See the LICENSE.txt, COPYING.txt, and COPYING.LIB.txt files. -A draft user manual in HTML format is included in the doc directory. As it -covers the four main Hamlib utilities the respective PDF files are no longer -included separately. +A draft user manual in HTML format is included in the doc directory. Supporting +documentation in the form of Unix manual pages have also been included after +being converted to HTML. Installation and Configuration @@ -205,7 +205,7 @@ for f in AUTHORS ChangeLog COPYING COPYING.LIB LICENSE README README.betatester cp -a ${f} ${ZIP_DIR}/${f}.txt ; todos ${ZIP_DIR}/${f}.txt ; done # Generate HTML documents from nroff formatted man files -for f in doc/man1/*.1; do \ +for f in doc/man1/*.1 doc/man7/*.7; do \ /usr/bin/groff -mandoc -Thtml >${f}.html ${f} cp -a ${f}.html ${ZIP_DIR}/doc/. ; done