summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-03-16 10:08:53 +0000
committerMatt Caswell <matt@openssl.org>2016-03-16 10:08:53 +0000
commit68dc37c12666604f8beac6e59507f809b7fd772b (patch)
treee685394fcd22c2d7095c61500ec7043ae64ccb87 /Configure
parent5427976d9eddacc87c7e079976bc7738e133dbdc (diff)
Disable AFALG when cross-compiling
We don't currently support cross-compiling of the afalg engine. However we were failing to explicitly mark it as disabled during Configure leading to a failed build. Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure2
1 files changed, 2 insertions, 0 deletions
diff --git a/Configure b/Configure
index 3751067cd4..a4aac21334 100755
--- a/Configure
+++ b/Configure
@@ -1208,6 +1208,8 @@ unless ($disabled{afalgeng}) {
} else {
push @{$config{engdirs}}, "afalg";
}
+ } else {
+ $disabled{afalgeng} = "cross-compiling";
}
} else {
$disabled{afalgeng} = "not-linux";