Skip to content

Commit e295d04

Browse files
author
Andy Polyakov
committed
Revert "Allow --strict-warnings with the icc compiler as well"
This reverts commit a610934. Reviewed-by: Richard Levitte <[email protected]> Reviewed-by: Ben Kaduk <[email protected]> (Merged from openssl#4281)
1 parent bc32673 commit e295d04

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Configure

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1324,8 +1324,8 @@ if (defined($config{api})) {
13241324
if ($strict_warnings)
13251325
{
13261326
my $wopt;
1327-
die "ERROR --strict-warnings requires gcc, clang or icc"
1328-
unless $ecc eq 'gcc' || $ecc eq 'clang' || $ecc eq 'icc';
1327+
die "ERROR --strict-warnings requires gcc or clang"
1328+
unless $ecc eq 'gcc' || $ecc eq 'clang';
13291329
foreach $wopt (split /\s+/, $gcc_devteam_warn)
13301330
{
13311331
$config{cflags} .= " $wopt" unless ($config{cflags} =~ /(?:^|\s)$wopt(?:\s|$)/)

0 commit comments

Comments
 (0)