From a8b8a7320c7f820c10d957f2e948d83f1efa0301 Mon Sep 17 00:00:00 2001 From: simbit18 Date: Thu, 20 Feb 2025 12:50:46 +0100 Subject: [PATCH] system/irtest/Make.defs: fixed the wrong path fix this error make[3] *** /nuttxspace/nuttx/apps/testing/irtest: No such file or directory. Stop. error due to this change apps/testing: Move irtest/sensortest/resmonitor/monkey to apps/system #2976 Signed-off-by: simbit18 --- system/irtest/Make.defs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/irtest/Make.defs b/system/irtest/Make.defs index f5588fcb2..841a9953e 100644 --- a/system/irtest/Make.defs +++ b/system/irtest/Make.defs @@ -21,5 +21,5 @@ ############################################################################ ifneq ($(CONFIG_SYSTEM_IRTEST),) -CONFIGURED_APPS += $(APPDIR)/testing/irtest +CONFIGURED_APPS += $(APPDIR)/system/irtest endif