mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-16 19:57:39 -05:00
gnu: python2-setproctitle: Fix build.
* gnu/packages/python-xyz.scm (python2-setproctitle): Don't pass ‘--embed’ to python-config. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
This commit is contained in:
parent
de681bdb11
commit
39386de244
1 changed files with 3 additions and 3 deletions
|
@ -13529,9 +13529,9 @@ (define-public python-setproctitle
|
|||
(replace 'check
|
||||
(lambda _
|
||||
(setenv "PYTHON" (or (which "python3") (which "python")))
|
||||
(setenv "PYCONFIG" (string-append (or (which "python3-config")
|
||||
(which "python-config"))
|
||||
" --embed"))
|
||||
(setenv "PYCONFIG" (if (which "python3-config")
|
||||
"python3-config --embed"
|
||||
"python-config"))
|
||||
(setenv "CC" "gcc")
|
||||
;; No need to extend PYTHONPATH to find the built package, since
|
||||
;; the Makefile will build anyway
|
||||
|
|
Loading…
Reference in a new issue