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

pkg/fatfs: add config path to NATIVEINCLUDES

Since `ffconf.h` gets included by `vfs.h` which gets included by
`native` code, this header needs to be available to the `native` cpu
module too.
This commit is contained in:
Benjamin Valentin 2022-02-14 12:44:07 +01:00
parent 8322110f84
commit 93cd0bcc57

View File

@ -1,6 +1,8 @@
INCLUDES += -I$(PKGDIRBASE)
INCLUDES += -I$(RIOTPKG)/fatfs/fatfs_diskio/mtd/include
INCLUDES += -I$(RIOTPKG)/fatfs/vendor/include
# native overwrites all INCLUDES
NATIVEINCLUDES += -I$(RIOTPKG)/fatfs/vendor/include
DIRS += $(RIOTBASE)/pkg/fatfs/fatfs_diskio/mtd