diff options
author | Damien George <damien.p.george@gmail.com> | 2016-05-20 12:43:32 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2016-05-20 12:46:20 +0100 |
commit | f9dc644017a03c5dac5c0798e4c45310b8cfc8e8 (patch) | |
tree | 6693da9432260c55154db77570978a085bd8f315 | |
parent | 3ff16ff52e45d4c0bf1df5fa650b72d6d835451b (diff) |
extmod: When including extmod headers, prefix path with extmod/.
-rw-r--r-- | extmod/fsusermount.c | 2 | ||||
-rw-r--r-- | extmod/modubinascii.c | 2 | ||||
-rw-r--r-- | extmod/vfs_fat.c | 2 | ||||
-rw-r--r-- | extmod/vfs_fat_misc.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/extmod/fsusermount.c b/extmod/fsusermount.c index 8f789ca03..9ddc98f3d 100644 --- a/extmod/fsusermount.c +++ b/extmod/fsusermount.c @@ -32,7 +32,7 @@ #include "py/nlr.h" #include "py/runtime.h" #include "lib/fatfs/ff.h" -#include "fsusermount.h" +#include "extmod/fsusermount.h" fs_user_mount_t *fatfs_mount_mkfs(mp_uint_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args, bool mkfs) { static const mp_arg_t allowed_args[] = { diff --git a/extmod/modubinascii.c b/extmod/modubinascii.c index 82f910b0e..3cceb991f 100644 --- a/extmod/modubinascii.c +++ b/extmod/modubinascii.c @@ -31,7 +31,7 @@ #include "py/nlr.h" #include "py/runtime.h" #include "py/binary.h" -#include "modubinascii.h" +#include "extmod/modubinascii.h" mp_obj_t mod_binascii_hexlify(size_t n_args, const mp_obj_t *args) { diff --git a/extmod/vfs_fat.c b/extmod/vfs_fat.c index c52adfbe0..2404b4aad 100644 --- a/extmod/vfs_fat.c +++ b/extmod/vfs_fat.c @@ -33,7 +33,7 @@ #include "lib/fatfs/ff.h" #include "lib/fatfs/diskio.h" #include "extmod/vfs_fat_file.h" -#include "fsusermount.h" +#include "extmod/fsusermount.h" #define mp_obj_fat_vfs_t fs_user_mount_t diff --git a/extmod/vfs_fat_misc.c b/extmod/vfs_fat_misc.c index 145b624c2..9b03f940e 100644 --- a/extmod/vfs_fat_misc.c +++ b/extmod/vfs_fat_misc.c @@ -35,7 +35,7 @@ #include "lib/fatfs/ff.h" #include "lib/fatfs/diskio.h" #include "extmod/vfs_fat_file.h" -#include "fsusermount.h" +#include "extmod/fsusermount.h" #include "py/lexer.h" #if _USE_LFN |