Configure fix for Windows: under Windows+perl "system" ends up going via the
command shell which means that redirecttion needs backslashes in the paths.
This commit is contained in:
parent
5067cce541
commit
ef54bde85b
@ -724,7 +724,7 @@ if($IsWindows) {
|
|||||||
EOF
|
EOF
|
||||||
close(OUT);
|
close(OUT);
|
||||||
|
|
||||||
system "perl crypto/objects/obj_dat.pl <crypto/objects/objects.h >crypto/objects/obj_dat.h";
|
system "perl crypto/objects/obj_dat.pl <crypto\\objects\\objects.h >crypto\\objects\\obj_dat.h";
|
||||||
} else {
|
} else {
|
||||||
(system "make -f Makefile.ssl PERL=\'$perl\' links") == 0 or exit $?;
|
(system "make -f Makefile.ssl PERL=\'$perl\' links") == 0 or exit $?;
|
||||||
### (system 'make depend') == 0 or exit $? if $depflags ne "";
|
### (system 'make depend') == 0 or exit $? if $depflags ne "";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user