diff options
author | Richard Levitte <levitte@openssl.org> | 2021-08-23 14:12:28 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2021-08-25 14:42:36 +0200 |
commit | 33a62d448c95c01a5bff7be8a00bf95b6a6a6f37 (patch) | |
tree | 73a162b1bd35c33ae81f378409d1015d18e79d0c /Configurations/descrip.mms.tmpl | |
parent | apps/ciphers: Fix wrong return value when using -convert parameter (diff) | |
download | openssl-33a62d448c95c01a5bff7be8a00bf95b6a6a6f37.tar.xz openssl-33a62d448c95c01a5bff7be8a00bf95b6a6a6f37.zip |
VMS: Correct faulty source directory specification
$(SRCDIR)/doc doesn't work right on VMS.
Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/16395)
Diffstat (limited to 'Configurations/descrip.mms.tmpl')
-rw-r--r-- | Configurations/descrip.mms.tmpl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Configurations/descrip.mms.tmpl b/Configurations/descrip.mms.tmpl index 3ffd387903..2d17ddebfd 100644 --- a/Configurations/descrip.mms.tmpl +++ b/Configurations/descrip.mms.tmpl @@ -886,9 +886,10 @@ EOF my $title = basename($args{src}, ".html"); my $pod = $gen0; my $mkpod2html = sourcefile('util', 'mkpod2html.pl'); + my $srcdoc = sourcedir('doc'); return <<"EOF"; $args{src} : $pod - \$(PERL) $mkpod2html -i $pod -o \$\@ -t "$title" -r "\$(SRCDIR)/doc" + \$(PERL) $mkpod2html -i $pod -o \$\@ -t "$title" -r "$srcdoc" EOF } elsif ($args{src} =~ /\.(\d)$/) { # |