summaryrefslogtreecommitdiffstats
path: root/Makefile.org
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-05-30 10:18:13 +0000
committerRichard Levitte <levitte@openssl.org>2002-05-30 10:18:13 +0000
commitf33ca23e2fdc71d0ffdaeec91fd1b826f184b485 (patch)
treeb9d1e1062c145d1705c634cd2b71ee435b61186d /Makefile.org
parent6d79659dd7f9e100a07d4a86aa6ecde6ea5992a9 (diff)
Our copy of pod2man.pl is old and comparatively broken, so lets remove it.
PR: 30
Diffstat (limited to 'Makefile.org')
-rw-r--r--Makefile.org6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.org b/Makefile.org
index 61803a41ef..7cf7bdacde 100644
--- a/Makefile.org
+++ b/Makefile.org
@@ -733,8 +733,8 @@ install_docs:
if [ "$$fn" = "config" ]; then sec=5; else sec=1; fi; \
echo "installing man$$sec/`basename $$i .pod`.$$sec"; \
(cd `dirname $$i`; \
- $(PERL) ../../util/pod2man.pl --section=$$sec --center=OpenSSL \
- --release=$(VERSION) `basename $$i`) \
+ pod2man --section=$$sec --center=OpenSSL \
+ --release=$(VERSION) `basename $$i`) \
> $(INSTALL_PREFIX)$(MANDIR)/man$$sec/`basename $$i .pod`.$$sec; \
done
@for i in doc/crypto/*.pod doc/ssl/*.pod; do \
@@ -742,7 +742,7 @@ install_docs:
if [ "$$fn" = "des_modes" ]; then sec=7; else sec=3; fi; \
echo "installing man$$sec/`basename $$i .pod`.$$sec"; \
(cd `dirname $$i`; \
- $(PERL) ../../util/pod2man.pl --section=$$sec --center=OpenSSL \
+ pod2man --section=$$sec --center=OpenSSL \
--release=$(VERSION) `basename $$i`) \
> $(INSTALL_PREFIX)$(MANDIR)/man$$sec/`basename $$i .pod`.$$sec; \
done