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

sys/printf_float: remove use of export for LINKFLAGS

This commit is contained in:
Alexandre Abadie 2020-01-02 09:52:04 +01:00
parent 857019769f
commit 521d9d23ee
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405

View File

@ -82,13 +82,13 @@ endif
ifneq (,$(filter printf_float,$(USEMODULE)))
ifneq (,$(filter newlib_nano,$(USEMODULE)))
export LINKFLAGS += -u _printf_float
LINKFLAGS += -u _printf_float
endif
endif
ifneq (,$(filter scanf_float,$(USEMODULE)))
ifneq (,$(filter newlib_nano,$(USEMODULE)))
export LINKFLAGS += -u _scanf_float
LINKFLAGS += -u _scanf_float
endif
endif