This is an automated email from the ASF dual-hosted git repository.
xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
The following commit(s) were added to refs/heads/master by this push:
new 49f6a219f examples/optee_gp: Fix Kconfig if/else condition
49f6a219f is described below
commit 49f6a219f970c0ee3c85a71111d646bdbfb08e30
Author: George Poulios <[email protected]>
AuthorDate: Tue May 20 14:30:24 2025 +0300
examples/optee_gp: Fix Kconfig if/else condition
Previous Kconfig had a mistake guarding optee_gp
Kconfig values based on EXAMPLES_OPTEE instead of
EXAMPLES_OPTEE_GP. Fix that
Signed-off-by: George Poulios <[email protected]>
---
examples/optee_gp/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/examples/optee_gp/Kconfig b/examples/optee_gp/Kconfig
index 6a2acc28e..46b1ae947 100644
--- a/examples/optee_gp/Kconfig
+++ b/examples/optee_gp/Kconfig
@@ -10,7 +10,7 @@ config EXAMPLES_OPTEE_GP
---help---
Enable the OP-TEE GP API client example which uses libteec
-if EXAMPLES_OPTEE
+if EXAMPLES_OPTEE_GP
config EXAMPLES_OPTEE_GP_PROGNAME
string "Program name"