The command source are files, not directories
Therefore, they should be concatenated with the source directory using catfile(), not catdir() Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
parent
5287761bfc
commit
41850f6bdc
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{- use File::Spec::Functions qw/catdir rel2abs/;
|
||||
{- use File::Spec::Functions qw/catdir catfile rel2abs/;
|
||||
our @cmd_srcs = (
|
||||
"asn1pars.c", "ca.c", "ciphers.c", "cms.c", "crl.c", "crl2p7.c",
|
||||
"dgst.c", "dhparam.c", "dsa.c", "dsaparam.c", "ec.c", "ecparam.c",
|
||||
|
@ -20,7 +20,7 @@ SOURCE[openssl]=\
|
|||
{- $target{apps_aux_src} -}
|
||||
DEPEND[openssl.o]=progs.h
|
||||
DEPEND[progs.h]={- join(" ", @cmd_srcs); -} ../configdata.pm
|
||||
GENERATE[progs.h]=progs.pl {- join(" ", map { catdir($sourcedir, $_) } @cmd_srcs); -}
|
||||
GENERATE[progs.h]=progs.pl {- join(" ", map { catfile($sourcedir, $_) } @cmd_srcs); -}
|
||||
|
||||
INCLUDE[openssl]={- rel2abs(catdir($builddir,"../include")) -} .. ../include
|
||||
DEPEND[openssl]=../libssl
|
||||
|
|
Loading…
Reference in a new issue