summaryrefslogtreecommitdiffstats
path: root/Makefile.org
diff options
context:
space:
mode:
authorLutz Jänicke <jaenicke@openssl.org>2002-06-20 19:49:39 +0000
committerLutz Jänicke <jaenicke@openssl.org>2002-06-20 19:49:39 +0000
commit04677ce02424af603d0ee23829145c0dba756914 (patch)
tree691f1759c5d53b76064139edc13ddc5fa1185b91 /Makefile.org
parent407adb5b171773396018fb1695918efb974774cf (diff)
Fix path to find util/pod2man.pl from the execution directory.
Make sure to use the predefined PERL. Submitted by: Bernhard Simon <bs@bsws.zid.tuwien.ac.at> Reviewed by: PR:
Diffstat (limited to 'Makefile.org')
-rw-r--r--Makefile.org4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.org b/Makefile.org
index 5eb7b095a5..7d0280bb39 100644
--- a/Makefile.org
+++ b/Makefile.org
@@ -739,7 +739,7 @@ install_docs:
if [ "$$fn" = "config" ]; then sec=5; else sec=1; fi; \
echo "installing man$$sec/`basename $$i .pod`.$$sec"; \
(cd `$(PERL) util/dirname.pl $$i`; \
- sh -c "`cd ../../util; ./pod2mantest ignore` \
+ sh -c "$(PERL) `cd ../../util; ./pod2mantest ignore` \
--section=$$sec --center=OpenSSL \
--release=$(VERSION) `basename $$i`") \
> $(INSTALL_PREFIX)$(MANDIR)/man$$sec/`basename $$i .pod`.$$sec; \
@@ -749,7 +749,7 @@ install_docs:
if [ "$$fn" = "des_modes" ]; then sec=7; else sec=3; fi; \
echo "installing man$$sec/`basename $$i .pod`.$$sec"; \
(cd `$(PERL) util/dirname.pl $$i`; \
- sh -c "`cd ../../util; ./pod2mantest ignore` \
+ sh -c "$(PERL) `cd ../../util; ./pod2mantest ignore` \
--section=$$sec --center=OpenSSL \
--release=$(VERSION) `basename $$i`") \
> $(INSTALL_PREFIX)$(MANDIR)/man$$sec/`basename $$i .pod`.$$sec; \