From 2d275a20b38d30266ee2b27e81e4f1fd8b1f45c6 Mon Sep 17 00:00:00 2001 From: Tiago Medicci Date: Wed, 19 Feb 2025 16:05:04 -0300 Subject: [PATCH] system/cpuload: Fix application's Make.defs location The PR https://github.com/apache/nuttx-apps/pull/2974 first moved it to `testing/sched/cpuload` and the Make.defs was adjusted accordingly. However, during the review process, it was moved to `system/cpuload` folder, but its Make.defs wasn't updated. This commit fixes it. Signed-off-by: Tiago Medicci --- system/cpuload/Make.defs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/cpuload/Make.defs b/system/cpuload/Make.defs index e73223175b0..bcbda06843d 100644 --- a/system/cpuload/Make.defs +++ b/system/cpuload/Make.defs @@ -21,5 +21,5 @@ ############################################################################ ifneq ($(CONFIG_SYSTEM_CPULOAD),) -CONFIGURED_APPS += $(APPDIR)/testing/sched/cpuload +CONFIGURED_APPS += $(APPDIR)/system/cpuload endif