diff --git a/Makefile.include b/Makefile.include
index 7267c6ca6622864c72a4b612ceb129ab385bd111..ed88844491ccce8eed872de61e91aea067b5266d 100644
--- a/Makefile.include
+++ b/Makefile.include
@@ -329,7 +329,7 @@ $(info $(USEPKG:%=$(RIOTPKG)/%/Makefile.include))
 
 # Deduplicate includes without sorting them
 # see https://stackoverflow.com/questions/16144115/makefile-remove-duplicate-words-without-sorting
-define uniq =
+define uniq
   $(eval seen :=)
   $(foreach _,$1,$(if $(filter $_,$(seen)),,$(eval seen += $_)))
   $(seen)