From: Yang Tse Date: Thu, 21 May 2009 17:40:55 +0000 (+0000) Subject: Include .pdf versions of c-ares man pages in distribution tarball. X-Git-Tag: curl-7_19_6~229 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5ca0c73e98025e1a9fce8d18d4a714a8547184c1;p=thirdparty%2Fcurl.git Include .pdf versions of c-ares man pages in distribution tarball. --- diff --git a/ares/maketgz b/ares/maketgz index 8e55ec946b..147f0e59eb 100755 --- a/ares/maketgz +++ b/ares/maketgz @@ -48,10 +48,24 @@ print "makes a new configure script\n"; print "running configure\n"; `./configure`; +# generate HTML versions of man pages +# Deactivated for now. It seems that man pages need some adjustments +# relative to paragraph and/or line breaks for proper html formatting. +# EXTRA_DIST will need $(HTMLPAGES) when this is fully activated. +# print "running make html\n"; +# `make -s html`; + +# generate PDF versions of man pages +print "running make pdf\n"; +`make -s pdf`; + # now make the actual tarball print "running make dist\n"; `make dist VERSION=$version`; +# remove temporay sourced man pages +`make -s clean-sourced-manpages`; + print "removing temporary configure.ac file\n"; `rm configure.ac.dist`; print "removing temporary ares_version.h file\n";