mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: python-setproctitle: Fix build.
* gnu/packages/python-xyz.scm (python-setproctitle)[arguments]: Add ‘--embed’ to $PYCONFIG.
This commit is contained in:
parent
bc36937431
commit
3f68322e5a
1 changed files with 3 additions and 2 deletions
|
@ -13149,8 +13149,9 @@ (define-public python-setproctitle
|
|||
(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
|
||||
|
|
Loading…
Reference in a new issue