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

make/newlib: remove use of export for LINKFLAGS

This commit is contained in:
Alexandre Abadie 2020-01-02 09:51:40 +01:00
parent 7c121000ce
commit 857019769f
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405

View File

@ -14,10 +14,10 @@ ifneq (,$(filter newlib_gnu_source,$(USEMODULE)))
endif
ifeq (1,$(USE_NEWLIB_NANO))
export LINKFLAGS += -specs=nano.specs
LINKFLAGS += -specs=nano.specs
endif
export LINKFLAGS += -lc
LINKFLAGS += -lc
# Note on `realpath` vs `abspath`
#