diff options
| author | Ada Stevenson <adanskana@gmail.com> | 2025-09-29 14:47:31 +0800 |
|---|---|---|
| committer | Maxim Cournoyer <maxim@guixotic.coop> | 2025-09-30 16:52:06 +0900 |
| commit | 7e704db3ea2ce335b15effca8012ceec89a5e5c4 (patch) | |
| tree | c84bdb3498bb9efe09382dff894b70b3614d2f6a /gnu/packages | |
| parent | 7df4eacd0fe6d786beafc3f8dadf5aa30d05861d (diff) | |
gnu: python-html5-parser: Fix build.
* gnu/packages/python-web.scm (python-html5-parser):
[arguments]<#:phases>{set-configure-flags}: New phase to set
`-Wno-error=implicit-function-declaration` flag.
Change-Id: I21f8f785c55c8cedf6669c221290e40e83447351
Signed-off-by: Andreas Enge <andreas@enge.fr>
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/python-web.scm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 1200ffb3ad4..61f53e89d5f 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -3530,6 +3530,14 @@ and written in Python.") (base32 "195wgxls3df7djry9cz3p2k9644l6bfd66fczbaw55fsq0c48agr")))) (build-system python-build-system) + (arguments + (list + #:phases + #~(modify-phases %standard-phases + (add-before 'build 'set-configure-flags + (lambda _ + (setenv "CFLAGS" + "-Wno-error=implicit-function-declaration")))))) (native-inputs (list pkg-config)) (inputs |
