Commit ef54bde8 authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

Configure fix for Windows: under Windows+perl "system" ends up going via the

command shell which means that redirecttion needs backslashes in the paths.
parent 5067cce5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 "";