From: Dr. Stephen Henson Date: Wed, 4 Aug 1999 22:52:46 +0000 (+0000) Subject: Configure fix for Windows: under Windows+perl "system" ends up going via the X-Git-Tag: OpenSSL_0_9_4~28 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ef54bde85b747b143f242da6004d0ae6f97c5335;p=oweals%2Fopenssl.git Configure fix for Windows: under Windows+perl "system" ends up going via the command shell which means that redirecttion needs backslashes in the paths. --- diff --git a/Configure b/Configure index e16ad081cc..b4e69b60e7 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 "";