1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

linux_can: fix library dependency

Exporting the `LINKFLAGS` messes with the buildtest environment
somehow.

It is however not required to export them here (as a still successful
build of `tests/conn_can` on native proves)
This commit is contained in:
Martine Lenders 2017-10-18 11:29:22 +02:00
parent 89340154e8
commit 976b1d6154
No known key found for this signature in database
GPG Key ID: 8E97A9FE55F25D62

View File

@ -597,7 +597,7 @@ ifneq (,$(filter evtimer,$(USEMODULE)))
endif
ifneq (,$(filter can_linux,$(USEMODULE)))
export LINKFLAGS += -lsocketcan
LINKFLAGS += -lsocketcan
endif
ifneq (,$(filter can,$(USEMODULE)))