This is an automated email from the ASF dual-hosted git repository.

xiaoxiang781216 pushed a commit to branch releases/13.0
in repository https://gitbox.apache.org/repos/asf/nuttx.git

commit 8125156d42a709181052036304e2c6713259b41f
Author: Alin Jerpelea <[email protected]>
AuthorDate: Fri Aug 14 12:32:29 2026 +0200

    sim: fix LAME inclusion typo
    
    the LAME and LIBMAD AUDIOUTILS are not corectly selected
    
    Signed-off-by: Alin Jerpelea <[email protected]>
---
 arch/sim/src/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/sim/src/Makefile b/arch/sim/src/Makefile
index 793e5f0df4c..fea71fb23e3 100644
--- a/arch/sim/src/Makefile
+++ b/arch/sim/src/Makefile
@@ -37,11 +37,11 @@ ifeq ($(CONFIG_VIDEOUTILS_LIBX264),y)
 INCLUDES += ${INCDIR_PREFIX}$(APPSDIR)/videoutils/x264/x264
 endif
 
-ifeq ($(CONFIG_VIDEOUTILS_LIBMAD),y)
+ifeq ($(CONFIG_AUDIOUTILS_LIBMAD),y)
 INCLUDES += ${INCDIR_PREFIX}$(APPSDIR)/audioutils/libmad/libmad
 endif
 
-ifeq ($(CONFIG_VIDEOUTILS_LAME),y)
+ifeq ($(CONFIG_AUDIOUTILS_LAME),y)
 INCLUDES += ${INCDIR_PREFIX}$(APPSDIR)/audioutils/lame/lame
 endif
 

Reply via email to