From cd06a813c6a0ad4e19ce8cca88d4410b57389473 Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Tue, 2 Jan 2024 18:14:40 +0100 Subject: [PATCH] Fix name in documentation fixup "Correct name and documentation of preprocessor symbol check function" Signed-off-by: Gilles Peskine --- scripts/common.make | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/common.make b/scripts/common.make index b115076f89..e8d22cb748 100644 --- a/scripts/common.make +++ b/scripts/common.make @@ -35,7 +35,7 @@ endif ## Remove the preprocessor symbols that are set in the current configuration ## from PREPROCESSOR_INPUT. Also normalize whitespace. ## Example: -## $(call remove_set_options,MBEDTLS_FOO MBEDTLS_BAR) +## $(call remove_enabled_options,MBEDTLS_FOO MBEDTLS_BAR) ## This expands to an empty string "" if MBEDTLS_FOO and MBEDTLS_BAR are both ## enabled, to "MBEDTLS_FOO" if MBEDTLS_BAR is enabled but MBEDTLS_FOO is ## disabled, etc.