Skip to content
Snippets Groups Projects
Commit 2419fe23 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

Fix i2c feature syntax in arch Makefiles

parent 7119fc49
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,7 @@ TARGETS += src/arch/arduino-nano/driver/stdout.cc
TARGETS += src/arch/arduino-nano/driver/uptime.cc
ifneq ($(findstring softi2c,${drivers}), )
else ($(findstring i2c,${arch_drivers}), )
else ifneq ($(findstring i2c,${arch_drivers}), )
TARGETS += src/arch/arduino-nano/driver/i2c.cc
endif
......
......@@ -30,7 +30,7 @@ ifneq ($(findstring stdin,${arch_drivers}), )
endif
ifneq ($(findstring softi2c,${drivers}), )
else ($(findstring i2c,${arch_drivers}), )
else ifneq ($(findstring i2c,${arch_drivers}), )
TARGETS += src/arch/msp430fr5969lp/driver/i2c.cc
endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment