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:
Dr. Stephen Henson 1999-08-04 22:52:46 +00:00
parent 5067cce541
commit ef54bde85b

View File

@ -724,7 +724,7 @@ if($IsWindows) {
EOF
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 {
(system "make -f Makefile.ssl PERL=\'$perl\' links") == 0 or exit $?;
### (system 'make depend') == 0 or exit $? if $depflags ne "";