mirror of https://github.com/openssl/openssl.git
VMS: use BLDDIR rather than BUILDDIR in descrip.mms.tmpl
Just like in the other build file templates Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
parent
932eaf0085
commit
b867c7077a
|
@ -80,7 +80,7 @@ PLATFORM={- $config{target} -}
|
||||||
OPTIONS={- $config{options} -}
|
OPTIONS={- $config{options} -}
|
||||||
CONFIGURE_ARGS=({- join(", ",quotify_l(@{$config{perlargv}})) -})
|
CONFIGURE_ARGS=({- join(", ",quotify_l(@{$config{perlargv}})) -})
|
||||||
SRCDIR={- $config{sourcedir} -}
|
SRCDIR={- $config{sourcedir} -}
|
||||||
BUILDDIR={- $config{builddir} -}
|
BLDDIR={- $config{builddir} -}
|
||||||
|
|
||||||
# Allow both V and VERBOSE to indicate verbosity. This only applies
|
# Allow both V and VERBOSE to indicate verbosity. This only applies
|
||||||
# to testing.
|
# to testing.
|
||||||
|
@ -591,7 +591,7 @@ $shlib.EXE : $lib.OLB $deps $ordinalsfile
|
||||||
IF "$mkdef_key" .EQS. "ssl" .OR. "$mkdef_key" .EQS. "crypto" THEN -
|
IF "$mkdef_key" .EQS. "ssl" .OR. "$mkdef_key" .EQS. "crypto" THEN -
|
||||||
\$(PERL) $mkdef_pl "$mkdef_key" "VMS" > $shlib.SYMVEC-tmp
|
\$(PERL) $mkdef_pl "$mkdef_key" "VMS" > $shlib.SYMVEC-tmp
|
||||||
IF "$mkdef_key" .EQS. "ssl" .OR. "$mkdef_key" .EQS. "crypto" THEN -
|
IF "$mkdef_key" .EQS. "ssl" .OR. "$mkdef_key" .EQS. "crypto" THEN -
|
||||||
\$(PERL) $translatesyms_pl \$(BUILDDIR)CXX\$DEMANGLER_DB. < $shlib.SYMVEC-tmp > $shlib.SYMVEC
|
\$(PERL) $translatesyms_pl \$(BLDDIR)CXX\$DEMANGLER_DB. < $shlib.SYMVEC-tmp > $shlib.SYMVEC
|
||||||
OPEN/WRITE/SHARE=READ OPT_FILE $shlib.OPT
|
OPEN/WRITE/SHARE=READ OPT_FILE $shlib.OPT
|
||||||
WRITE OPT_FILE "IDENTIFICATION=""V$config{version}"""
|
WRITE OPT_FILE "IDENTIFICATION=""V$config{version}"""
|
||||||
IF "$mkdef_key" .NES. "ssl" .AND. "$mkdef_key" .NES. "crypto" THEN -
|
IF "$mkdef_key" .NES. "ssl" .AND. "$mkdef_key" .NES. "crypto" THEN -
|
||||||
|
@ -699,7 +699,7 @@ EOF
|
||||||
rel2abs($config{builddir}));
|
rel2abs($config{builddir}));
|
||||||
return <<"EOF";
|
return <<"EOF";
|
||||||
$script : $sources
|
$script : $sources
|
||||||
\$(PERL) "-I\$(BUILDDIR)" "-Mconfigdata" $dofile -
|
\$(PERL) "-I\$(BLDDIR)" "-Mconfigdata" $dofile -
|
||||||
"-o$target{build_file}" $sources > $script
|
"-o$target{build_file}" $sources > $script
|
||||||
SET FILE/PROT=(S:RWED,O:RWED,G:RE,W:RE) $script
|
SET FILE/PROT=(S:RWED,O:RWED,G:RE,W:RE) $script
|
||||||
PURGE $script
|
PURGE $script
|
||||||
|
|
Loading…
Reference in New Issue