diff options
| author | Damien George <damien@micropython.org> | 2021-07-12 16:34:27 +1000 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2021-07-12 16:37:07 +1000 |
| commit | 94dfaff18bd1941c773f89359e40db5b555cd3ef (patch) | |
| tree | 97f77a140a86a50d5dcc2341a3beb35499a5e082 /extmod/modure.c | |
| parent | 966e8bf934273056af3162887fe1df014601a66d (diff) | |
extmod: Update for move of crypto-algorithms, re1.5, uzlib to lib.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'extmod/modure.c')
| -rw-r--r-- | extmod/modure.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/extmod/modure.c b/extmod/modure.c index 220587b42..d0829e8c5 100644 --- a/extmod/modure.c +++ b/extmod/modure.c @@ -37,7 +37,7 @@ #define re1_5_stack_chk() MP_STACK_CHECK() -#include "re1.5/re1.5.h" +#include "lib/re1.5/re1.5.h" #define FLAG_DEBUG 0x1000 @@ -454,11 +454,11 @@ const mp_obj_module_t mp_module_ure = { // only if module is enabled by config setting. #define re1_5_fatal(x) assert(!x) -#include "re1.5/compilecode.c" +#include "lib/re1.5/compilecode.c" #if MICROPY_PY_URE_DEBUG -#include "re1.5/dumpcode.c" +#include "lib/re1.5/dumpcode.c" #endif -#include "re1.5/recursiveloop.c" -#include "re1.5/charclass.c" +#include "lib/re1.5/recursiveloop.c" +#include "lib/re1.5/charclass.c" #endif // MICROPY_PY_URE |
