aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.org
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2014-12-10 17:10:59 -0500
committerRich Salz <rsalz@openssl.org>2014-12-10 17:10:59 -0500
commita4a934119dd213e16c9d8b11150a4815604c13bb (patch)
tree044dfdcba056ddbde063dacf69b67b0c93be2a86 /Makefile.org
parent5b17b79a895bb9eace11d4596acadaa2ed69cf2d (diff)
downloadopenssl-a4a934119dd213e16c9d8b11150a4815604c13bb.tar.gz
Remove old private pod2man
Include Richard's point to remove the 'sh -c' wrapper Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'Makefile.org')
-rw-r--r--Makefile.org9
1 files changed, 4 insertions, 5 deletions
diff --git a/Makefile.org b/Makefile.org
index 8bb7e01773..7c802e8dfe 100644
--- a/Makefile.org
+++ b/Makefile.org
@@ -716,7 +716,6 @@ install_docs:
$(INSTALL_PREFIX)$(MANDIR)/man3 \
$(INSTALL_PREFIX)$(MANDIR)/man5 \
$(INSTALL_PREFIX)$(MANDIR)/man7
- @pod2man="`cd ./util; ./pod2mantest $(PERL)`"; \
here="`pwd`"; \
filecase=; \
case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin*-*-cc) \
@@ -727,9 +726,9 @@ install_docs:
sec=`$(PERL) util/extract-section.pl 1 < $$i`; \
echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
(cd `$(PERL) util/dirname.pl $$i`; \
- sh -c "$$pod2man \
+ pod2man \
--section=$$sec --center=OpenSSL \
- --release=$(VERSION) `basename $$i`") \
+ --release=$(VERSION) `basename $$i`) \
> $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
$(PERL) util/extract-names.pl < $$i | \
(grep -v $$filecase "^$$fn\$$"; true) | \
@@ -744,9 +743,9 @@ install_docs:
sec=`$(PERL) util/extract-section.pl 3 < $$i`; \
echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
(cd `$(PERL) util/dirname.pl $$i`; \
- sh -c "$$pod2man \
+ pod2man \
--section=$$sec --center=OpenSSL \
- --release=$(VERSION) `basename $$i`") \
+ --release=$(VERSION) `basename $$i`) \
> $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
$(PERL) util/extract-names.pl < $$i | \
(grep -v $$filecase "^$$fn\$$"; true) | \