mirror of https://github.com/openssl/openssl.git
VMS: support VERBOSE and V in descrip.mms
With Unixly Makefiles as well as with nmake, make variables are transferred to the shell running the commands as envinronment variables. This principle doesn't apply with MMS, so we must explicitely define VERBOSE as commands when it's needed. Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
parent
be6bdab6f8
commit
e817315702
|
@ -82,6 +82,10 @@ CONFIGURE_ARGS=({- join(", ",quotify_l(@{$config{perlargv}})) -})
|
||||||
SRCDIR={- $config{sourcedir} -}
|
SRCDIR={- $config{sourcedir} -}
|
||||||
BUILDDIR={- $config{builddir} -}
|
BUILDDIR={- $config{builddir} -}
|
||||||
|
|
||||||
|
# Allow both V and VERBOSE to indicate verbosity. This only applies
|
||||||
|
# to testing.
|
||||||
|
VERBOSE=$(V)
|
||||||
|
|
||||||
VERSION={- $config{version} -}
|
VERSION={- $config{version} -}
|
||||||
MAJOR={- $config{major} -}
|
MAJOR={- $config{major} -}
|
||||||
MINOR={- $config{minor} -}
|
MINOR={- $config{minor} -}
|
||||||
|
@ -234,6 +238,7 @@ test tests : configdata.pm, -
|
||||||
DEFINE SRCTOP {- sourcedir() -}
|
DEFINE SRCTOP {- sourcedir() -}
|
||||||
DEFINE BLDTOP {- builddir() -}
|
DEFINE BLDTOP {- builddir() -}
|
||||||
DEFINE OPENSSL_ENGINES {- builddir("engines") -}
|
DEFINE OPENSSL_ENGINES {- builddir("engines") -}
|
||||||
|
IF "$(VERBOSE)" .NES. "" THEN DEFINE VERBOSE "$(VERBOSE)"
|
||||||
$(PERL) {- sourcefile("test", "run_tests.pl") -} $(TESTS)
|
$(PERL) {- sourcefile("test", "run_tests.pl") -} $(TESTS)
|
||||||
DEASSIGN OPENSSL_ENGINES
|
DEASSIGN OPENSSL_ENGINES
|
||||||
DEASSIGN BLDTOP
|
DEASSIGN BLDTOP
|
||||||
|
|
Loading…
Reference in New Issue