Skip to content

Commit 94b03e2

Browse files
committed
examples: make: fix LOGGER=rtt
CMake builds worked, but the variables were brokenly updated for make. Fixes: a64e3eb update board_test always output on uart Signed-off-by: Karl Palsson <[email protected]>
1 parent 5130850 commit 94b03e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/build_system/make/make.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@ endif
134134
ifeq ($(LOGGER),rtt)
135135
CFLAGS += -DLOGGER_RTT
136136
#CFLAGS += -DSEGGER_RTT_MODE_DEFAULT=SEGGER_RTT_MODE_BLOCK_IF_FIFO_FULL
137-
INC += $(TOP)/$(lib/SEGGER_RTT)/RTT
138-
SRC_C += $(lib/SEGGER_RTT)/RTT/SEGGER_RTT.c
137+
INC += $(TOP)/lib/SEGGER_RTT/RTT
138+
SRC_C += lib/SEGGER_RTT/RTT/SEGGER_RTT.c
139139
endif
140140
ifeq ($(LOGGER),swo)
141141
CFLAGS += -DLOGGER_SWO

0 commit comments

Comments
 (0)