Fix small typo (parenthesis missing)
authorRichard Levitte <levitte@openssl.org>
Tue, 30 Jan 2018 18:13:11 +0000 (19:13 +0100)
committerRichard Levitte <levitte@openssl.org>
Tue, 30 Jan 2018 18:13:57 +0000 (19:13 +0100)
Fixes #5207 (another PR)

Reviewed-by: Ben Kaduk <kaduk@mit.edu>
(Merged from https://github.com/openssl/openssl/pull/5210)

Configure

index b7ccbc5a04260955becba9c1170479987733dcdf..737dfc78ba04cb858c6fe8c4126f0dd75b330df5 100755 (executable)
--- a/Configure
+++ b/Configure
@@ -1155,7 +1155,7 @@ if ($target =~ /^mingw/ && `$config{cc} --target-help 2>&1` =~ m/-mno-cygwin/m)
 
 if ($target =~ /linux.*-mips/ && !$disabled{asm}
         && !grep { $_ !~ /-m(ips|arch=)/ } (@{$user{CFLAGS}},
-                                            @{$useradd{CFLAGS}}) {
+                                            @{$useradd{CFLAGS}})) {
        # minimally required architecture flags for assembly modules
        my $value;
        $value = '-mips2' if ($target =~ /mips32/);