From: Richard Levitte Date: Tue, 30 Jan 2018 18:13:11 +0000 (+0100) Subject: Fix small typo (parenthesis missing) X-Git-Tag: OpenSSL_1_1_1-pre1~90 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9be64336d899bac38fd4a4423df01d44fff5f2eb;p=openssl Fix small typo (parenthesis missing) Fixes #5207 (another PR) Reviewed-by: Ben Kaduk (Merged from https://github.com/openssl/openssl/pull/5210) --- diff --git a/Configure b/Configure index b7ccbc5a04..737dfc78ba 100755 --- 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/);