From 22f17abee0d6a001cc75a67b552c6c50b957e19d Mon Sep 17 00:00:00 2001 From: Benjamin Valentin Date: Fri, 11 Mar 2022 16:32:28 +0100 Subject: [PATCH] tools/benchmark_udp: fix build --- dist/tools/benchmark_udp/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/tools/benchmark_udp/Makefile b/dist/tools/benchmark_udp/Makefile index 63829f0d63..d75041967b 100644 --- a/dist/tools/benchmark_udp/Makefile +++ b/dist/tools/benchmark_udp/Makefile @@ -10,7 +10,7 @@ run: $(BINARY) :: 12345 RIOTBASE:=../../.. -RIOT_INCLUDES=-I$(RIOTBASE)/core/include -I$(RIOTBASE)/sys/include +RIOT_INCLUDES=-I$(RIOTBASE)/core/lib/include -I$(RIOTBASE)/sys/include SRCS:=$(wildcard *.c) $(BINARY): $(SRCS) $(CC) $(CFLAGS) $(CFLAGS_EXTRA) $(RIOT_INCLUDES) -I.. $(SRCS) -o $@