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 <tiago.medicci@espressif.com>
This commit is contained in:
Tiago Medicci 2025-02-19 16:05:04 -03:00 committed by Mateusz Szafoni
parent 5de75adfb4
commit ece14800e1

View file

@ -21,5 +21,5 @@
############################################################################
ifneq ($(CONFIG_SYSTEM_CPULOAD),)
CONFIGURED_APPS += $(APPDIR)/testing/sched/cpuload
CONFIGURED_APPS += $(APPDIR)/system/cpuload
endif