This is an automated email from the ASF dual-hosted git repository.
archer 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 a8b8a7320 system/irtest/Make.defs: fixed the wrong path
a8b8a7320 is described below
commit a8b8a7320c7f820c10d957f2e948d83f1efa0301
Author: simbit18 <simbi...@gmail.com>
AuthorDate: Thu Feb 20 12:50:46 2025 +0100
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 <simbi...@gmail.com>
---
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