From 2893269cbb2c9dc638e7f66c4e8af354197bdd2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bence=20Sz=C3=A9pk=C3=BAti?= Date: Thu, 27 May 2021 23:50:48 +0200 Subject: [PATCH] Remove reference to obsolete inclusion guard MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Bence Szépkúti --- scripts/generate_query_config.pl | 3 --- 1 file changed, 3 deletions(-) diff --git a/scripts/generate_query_config.pl b/scripts/generate_query_config.pl index 7276049822ef..6c4deefecb4e 100755 --- a/scripts/generate_query_config.pl +++ b/scripts/generate_query_config.pl @@ -63,9 +63,6 @@ if ($line =~ /^(\/\/)?\s*#\s*define\s+(MBEDTLS_\w+).*/) { my $name = $2; - # Skip over the macro that prevents multiple inclusion - next if "MBEDTLS_CONFIG_H" eq $name; - # Skip over the macro if it is in the ecluded list next if $name =~ /$excluded_re/;