mirror of
https://github.com/openssl/openssl.git
synced 2024-12-03 05:41:46 +08:00
0eed845ce2
Perl's system() on VMS needs to have the command line properly fixed up, even with arguments passed in list form. We arrange that by having util/wrap.pl use the same command line fixups as OpenSSL::Test. As a consequence, util/wrap.pl needs to be generated, to easily pick up data from configdata.pm. This also removes yet another file copying hack from the build file templates. Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15791)
12 lines
400 B
Plaintext
12 lines
400 B
Plaintext
IF[{- $target{build_scheme}->[1] eq "VMS" -}]
|
|
SCRIPTS{noinst}=local_shlib.com unlocal_shlib.com
|
|
SOURCE[local_shlib.com]=local_shlib.com.in
|
|
SOURCE[unlocal_shlib.com]=unlocal_shlib.com.in
|
|
ELSIF[{- $target{build_scheme}->[1] eq "unix" -}]
|
|
SCRIPTS{noinst}=shlib_wrap.sh
|
|
SOURCE[shlib_wrap.sh]=shlib_wrap.sh.in
|
|
ENDIF
|
|
SCRIPTS{noinst}=wrap.pl
|
|
SOURCE[wrap.pl]=wrap.pl.in
|
|
DEPEND[wrap.pl]=../configdata.pm
|