From f95b225a8f3c5613d1a7cebcbe9610a126fd0568 Mon Sep 17 00:00:00 2001 From: Gunar Schorcht Date: Sat, 12 Aug 2023 13:54:16 +0200 Subject: [PATCH] makefiles: fix typo in driver_with_touch_dev.mk --- makefiles/driver_with_touch_dev.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefiles/driver_with_touch_dev.mk b/makefiles/driver_with_touch_dev.mk index 2b6afdd8c1..cf394855ab 100644 --- a/makefiles/driver_with_touch_dev.mk +++ b/makefiles/driver_with_touch_dev.mk @@ -4,7 +4,7 @@ TOUCH_DEV_INTERFACE ?= $(MODULE)_touch_dev.c # by default include all .c files except _touch_dev.c SRC = $(filter-out $(TOUCH_DEV_INTERFACE),$(wildcard *.c)) -# only include _touch_dev.c if saul module is used +# only include _touch_dev.c if touch_dev module is used ifneq (,$(filter touch_dev,$(USEMODULE))) SRC += $(TOUCH_DEV_INTERFACE) endif