aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUladzimir Pylinski <barthess@yandex.ru>2016-03-28 14:38:32 +0000
committerUladzimir Pylinski <barthess@yandex.ru>2016-03-28 14:38:32 +0000
commit8447e50604d8676df61e9ccd9b62954c9eb4e3ab (patch)
tree63d1b8ec4db597c8fdff4c21685518e15653fddd
parent8ff61f3173e8ba55b5d0debf61dfa6e36e2da557 (diff)
downloadChibiOS-8447e50604d8676df61e9ccd9b62954c9eb4e3ab.tar.gz
ChibiOS-8447e50604d8676df61e9ccd9b62954c9eb4e3ab.tar.bz2
ChibiOS-8447e50604d8676df61e9ccd9b62954c9eb4e3ab.zip
Fixed build error in case of "USE_VERBOSE_COMPILE = no" set in Makefile.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9176 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r--os/hal/hal.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/hal.mk b/os/hal/hal.mk
index dd6f4af84..fb0ebdc37 100644
--- a/os/hal/hal.mk
+++ b/os/hal/hal.mk
@@ -69,7 +69,7 @@ ifneq ($(findstring HAL_USE_WDG TRUE,$(HALCONF)),)
HALSRC += $(CHIBIOS)/os/hal/src/hal_wdg.c
endif
else
-HALSRC = $(CHIBIOS)/os/hal/src/hal.c \
+HALSRC = $(CHIBIOS)/os/hal/src/hal_hal.c \
$(CHIBIOS)/os/hal/src/hal_buffers.c \
$(CHIBIOS)/os/hal/src/hal_queues.c \
$(CHIBIOS)/os/hal/src/hal_mmcsd.c \