Configure fix for Windows: under Windows+perl "system" ends up going via the
authorDr. Stephen Henson <steve@openssl.org>
Wed, 4 Aug 1999 22:52:46 +0000 (22:52 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Wed, 4 Aug 1999 22:52:46 +0000 (22:52 +0000)
command shell which means that redirecttion needs backslashes in the paths.

Configure

index e16ad081ccd7832cdc32561afcde11bc9e45ecb5..b4e69b60e7e3e60bc537206dd6f874ca1761b86b 100755 (executable)
--- a/Configure
+++ b/Configure
@@ -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 "";