diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-06-27 00:11:35 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-06-27 23:28:06 +0200 |
commit | 3f68322e5a0073ffe1209dee430f30168cda2b96 (patch) | |
tree | 787116661ef1dda6da49a1f497c9c3e150b96afa /gnu | |
parent | bc3693743127accce674faa70f8b7326f6439eea (diff) | |
download | guix-3f68322e5a0073ffe1209dee430f30168cda2b96.tar.gz |
gnu: python-setproctitle: Fix build.
* gnu/packages/python-xyz.scm (python-setproctitle)[arguments]: Add ‘--embed’ to $PYCONFIG.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-xyz.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 463bfbf3bd..a526fc29b5 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -13149,8 +13149,9 @@ English stemmer.") (replace 'check (lambda _ (setenv "PYTHON" (or (which "python3") (which "python"))) - (setenv "PYCONFIG" (or (which "python3-config") - (which "python-config"))) + (setenv "PYCONFIG" (string-append (or (which "python3-config") + (which "python-config")) + " --embed")) (setenv "CC" "gcc") ;; No need to extend PYTHONPATH to find the built package, since ;; the Makefile will build anyway |