From ba38697ca8a31591960c1086352817f4da006218 Mon Sep 17 00:00:00 2001 From: teastep Date: Sat, 23 Dec 2006 23:23:08 +0000 Subject: [PATCH] Update build environment to run on Ubuntu git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@5155 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb --- tools/build/makeshorewall | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/tools/build/makeshorewall b/tools/build/makeshorewall index 6a6a552d0..c70e13f0c 100755 --- a/tools/build/makeshorewall +++ b/tools/build/makeshorewall @@ -60,11 +60,15 @@ DIR=$PWD # # location and options for GnuPG # -GPG="/usr/bin/gpg -ab --batch --comment 'To verify this, you can download our public key at https://lists.shorewall.net/shorewall.gpg.key'" +GPG="/usr/bin/gpg -ab --comment 'To verify this, you can download our public key at https://lists.shorewall.net/shorewall.gpg.key'" # # SVN Repository # SVN=https://shorewall.svn.sourceforge.net/svnroot/shorewall +# +# Program that generates man pages from Docbook XML +# +DOCBOOK2MAN=docbook2x-man ################################################################################ # V A R I A B L E S ################################################################################ @@ -342,7 +346,7 @@ if [ -n "${BUILDTARBALL}${BUILDRPM}" ]; then for f in *.xml; do if [ $f != shorewall-template.xml ]; then progress_message "Generating Man Page from $f..." - docbook-to-man $f + $DOCBOOK2MAN $f fi done rm *.xml @@ -358,7 +362,7 @@ if [ -n "${BUILDTARBALL}${BUILDRPM}" ]; then for f in *.xml; do if [ $f != shorewall-template.xml ]; then progress_message "Generating Man Page from $f..." - docbook-to-man $f + $DOCBOOK2MAN $f fi done rm *.xml