diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-12-22 16:34:29 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-12-22 16:34:29 +0100 |
commit | 62c3e4ab9c87689ff0b7d27350bde176981daf1b (patch) | |
tree | f4f52faf772e13a3101c5964ce0089c66ff63fc7 /modules/regex/config.py | |
parent | 5fe0d8df220bb9140a29e557e8392039105e31b7 (diff) |
pcre2: Update to upstream version 10.42
Changelog: https://github.com/PCRE2Project/pcre2/blob/pcre2-10.42/ChangeLog
This should also fix support for RISC-V architectures, at least in the sljit
library.
Diffstat (limited to 'modules/regex/config.py')
-rw-r--r-- | modules/regex/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/regex/config.py b/modules/regex/config.py index 1248a8374d..df9f44cb95 100644 --- a/modules/regex/config.py +++ b/modules/regex/config.py @@ -1,5 +1,5 @@ def can_build(env, platform): - return not env["arch"].startswith("rv") + return True def configure(env): |