diff options
author | Marius Bakke <mbakke@fastmail.com> | 2020-05-09 14:58:00 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2020-05-09 14:58:00 +0200 |
commit | 93600aae801dbd58192e5aa65b36f57255191d0d (patch) | |
tree | 4198623fc63c2001f57a5e1777c0d3999fbc01b4 /gnu | |
parent | 399163b6c011cee2ed33e0535d0610c5359f9cda (diff) | |
download | patches-93600aae801dbd58192e5aa65b36f57255191d0d.tar patches-93600aae801dbd58192e5aa65b36f57255191d0d.tar.gz |
gnu: toxic: Fix build with Python 3.8.base-for-series-3888
* gnu/packages/messaging.scm (toxic)[arguments]: Add substitution in the
enable-python-scripting phase.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/messaging.scm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index 1930eb63aa..46242f20e9 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -20,6 +20,7 @@ ;;; Copyright © 2019, 2020 Timotej Lazar <timotej.lazar@araneo.si> ;;; Copyright © 2020 Nicolò Balzarotti <nicolo@nixo.xyz> ;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com> +;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -1768,6 +1769,12 @@ building the IRC clients and bots.") (delete 'configure) (add-before 'build 'enable-python-scripting (lambda _ + ;; XXX: For compatibility with Python 3.8, adjust python3-config + ;; invokation to include --embed; see + ;; <https://github.com/JFreegman/toxic/issues/533>. + (substitute* "cfg/checks/python.mk" + (("python3-config --ldflags") + "python3-config --ldflags --embed")) (setenv "ENABLE_PYTHON" "1") #t))))) (inputs |