diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2023-07-30 13:36:37 +0200 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2023-08-02 12:29:57 +0200 |
commit | b3726639df72aa3943d8e403e3c2b9a6cde05421 (patch) | |
tree | c356a6fd58dc0a3ba1b472191b0b10e1ad4e660e /guix/build-system/pyproject.scm | |
parent | e987a9e28ec0d8d1b8ecdb2486eb12eae270a49d (diff) |
guix: pyproject-build-system: Default configure-flags to empty dictionary.pyproject-toml
PEP 517 specifies it should be a dictionary and thus meson-python cannot
handle an empty list.
Fixes: <https://issues.guix.gnu.org/62781>
Diffstat (limited to 'guix/build-system/pyproject.scm')
-rw-r--r-- | guix/build-system/pyproject.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/build-system/pyproject.scm b/guix/build-system/pyproject.scm index 585117cbf0..c0e089eac7 100644 --- a/guix/build-system/pyproject.scm +++ b/guix/build-system/pyproject.scm @@ -93,7 +93,7 @@ (define* (pyproject-build name inputs #:key source (tests? #t) - (configure-flags ''()) + (configure-flags ''(@)) (backend-path #f) (build-backend #f) (test-backend #f) |