Fix minor windows build issues
[extended tests] Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/6661)
This commit is contained in:
parent
750d5587d1
commit
fb853fa245
1 changed files with 11 additions and 11 deletions
|
@ -92,20 +92,20 @@ GENERATED={- # common0.tmpl provides @generated
|
||||||
join(" ", map { (my $x = $_) =~ s|\.[sS]$|.asm|; $x }
|
join(" ", map { (my $x = $_) =~ s|\.[sS]$|.asm|; $x }
|
||||||
@generated) -}
|
@generated) -}
|
||||||
|
|
||||||
INSTALL_LIBS={- join(" ", map { lib($_) } @{$unified_info{install}->{libraries}}) -}
|
INSTALL_LIBS={- join(" ", map { quotify1(lib($_)) } @{$unified_info{install}->{libraries}}) -}
|
||||||
INSTALL_SHLIBS={- join(" ", map { shlib($_) } @{$unified_info{install}->{libraries}}) -}
|
INSTALL_SHLIBS={- join(" ", map { quotify1(shlib($_)) } @{$unified_info{install}->{libraries}}) -}
|
||||||
INSTALL_SHLIBPDBS={- join(" ", map { local $shlibext = ".pdb"; shlib($_) } @{$unified_info{install}->{libraries}}) -}
|
INSTALL_SHLIBPDBS={- join(" ", map { local $shlibext = ".pdb"; quotify1(shlib($_)) } @{$unified_info{install}->{libraries}}) -}
|
||||||
INSTALL_ENGINES={- join(" ", map { dso($_) } @{$unified_info{install}->{engines}}) -}
|
INSTALL_ENGINES={- join(" ", map { quotify1(dso($_)) } @{$unified_info{install}->{engines}}) -}
|
||||||
INSTALL_ENGINEPDBS={- join(" ", map { local $dsoext = ".pdb"; dso($_) } @{$unified_info{install}->{engines}}) -}
|
INSTALL_ENGINEPDBS={- join(" ", map { local $dsoext = ".pdb"; quotify1(dso($_)) } @{$unified_info{install}->{engines}}) -}
|
||||||
INSTALL_PROGRAMS={- join(" ", map { $_.$exeext } grep { !m|^test\\| } @{$unified_info{install}->{programs}}) -}
|
INSTALL_PROGRAMS={- join(" ", map { quotify1($_.$exeext) } grep { !m|^test\\| } @{$unified_info{install}->{programs}}) -}
|
||||||
INSTALL_PROGRAMPDBS={- join(" ", map { $_.".pdb" } grep { !m|^test\\| } @{$unified_info{install}->{programs}}) -}
|
INSTALL_PROGRAMPDBS={- join(" ", map { quotify1($_.".pdb") } grep { !m|^test\\| } @{$unified_info{install}->{programs}}) -}
|
||||||
{- output_off() if $disabled{apps}; "" -}
|
{- output_off() if $disabled{apps}; "" -}
|
||||||
BIN_SCRIPTS=$(BLDDIR)\tools\c_rehash.pl
|
BIN_SCRIPTS="$(BLDDIR)\tools\c_rehash.pl"
|
||||||
MISC_SCRIPTS=$(BLDDIR)\apps\CA.pl $(BLDDIR)\apps\tsget.pl
|
MISC_SCRIPTS="$(BLDDIR)\apps\CA.pl" "$(BLDDIR)\apps\tsget.pl"
|
||||||
{- output_on() if $disabled{apps}; "" -}
|
{- output_on() if $disabled{apps}; "" -}
|
||||||
|
|
||||||
APPS_OPENSSL={- use File::Spec::Functions;
|
APPS_OPENSSL={- use File::Spec::Functions;
|
||||||
catfile("apps","openssl") -}
|
"\"".catfile("apps","openssl")."\"" -}
|
||||||
|
|
||||||
# Do not edit these manually. Use Configure with --prefix or --openssldir
|
# Do not edit these manually. Use Configure with --prefix or --openssldir
|
||||||
# to change this! Short explanation in the top comment in Configure
|
# to change this! Short explanation in the top comment in Configure
|
||||||
|
@ -415,7 +415,7 @@ install_dev:
|
||||||
@"$(PERL)" "$(SRCDIR)\util\copy.pl" "-exclude_re=/__DECC_" \
|
@"$(PERL)" "$(SRCDIR)\util\copy.pl" "-exclude_re=/__DECC_" \
|
||||||
"$(SRCDIR)\include\openssl\*.h" \
|
"$(SRCDIR)\include\openssl\*.h" \
|
||||||
"$(INSTALLTOP)\include\openssl"
|
"$(INSTALLTOP)\include\openssl"
|
||||||
@"$(PERL)" "$(SRCDIR)\util\copy.pl" $(BLDDIR)\include\openssl\*.h \
|
@"$(PERL)" "$(SRCDIR)\util\copy.pl" "$(BLDDIR)\include\openssl\*.h" \
|
||||||
"$(INSTALLTOP)\include\openssl"
|
"$(INSTALLTOP)\include\openssl"
|
||||||
@"$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(libdir)"
|
@"$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(libdir)"
|
||||||
@"$(PERL)" "$(SRCDIR)\util\copy.pl" $(INSTALL_LIBS) "$(libdir)"
|
@"$(PERL)" "$(SRCDIR)\util\copy.pl" $(INSTALL_LIBS) "$(libdir)"
|
||||||
|
|
Loading…
Reference in a new issue