From 851c0bb578888f4bd2e7bbf459831296c4d684d8 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 f5588fcb22f..841a9953e9d 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