From ef54bde85b747b143f242da6004d0ae6f97c5335 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Wed, 4 Aug 1999 22:52:46 +0000 Subject: [PATCH] Configure fix for Windows: under Windows+perl "system" ends up going via the command shell which means that redirecttion needs backslashes in the paths. --- Configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Configure b/Configure index e16ad081c..b4e69b60e 100755 --- a/Configure +++ b/Configure @@ -724,7 +724,7 @@ if($IsWindows) { EOF close(OUT); - system "perl crypto/objects/obj_dat.pl crypto/objects/obj_dat.h"; + system "perl crypto/objects/obj_dat.pl 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 "";