From 68dc37c12666604f8beac6e59507f809b7fd772b Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Wed, 16 Mar 2016 10:08:53 +0000 Subject: [PATCH] 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 --- Configure | 2 ++ 1 file changed, 2 insertions(+) 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"; -- 2.34.1