summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorMat <mberchtold@gmail.com>2016-01-09 19:45:16 +0100
committerRich Salz <rsalz@openssl.org>2016-01-09 18:11:07 -0500
commit85d7bdf03614334a52984df889146286f6e5720d (patch)
treecc0ba0a8cf5d6402b001c096d183a33992e5fb3e /Configure
parent7ba4f9dda54c44261d0a2cf38a106f8d6daacc25 (diff)
Fix build failure on Windows
Fixes https://github.com/openssl/openssl/issues/530 Signed-off-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/Configure b/Configure
index fb4593e977..c6c68bf11d 100755
--- a/Configure
+++ b/Configure
@@ -2195,7 +2195,7 @@ EOF
# create the ms/version32.rc file if needed
if ($IsMK1MF && ($target !~ /^netware/)) {
my ($v1, $v2, $v3, $v4);
- if ($version_num =~ /^0x([0-9a-f]{1})([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})L$/i) {
+ if ($version_num =~ /^0x([0-9a-f]{1})([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{1})L$/i) {
$v1=hex $1;
$v2=hex $2;
$v3=hex $3;