efraim pushed a commit to branch master
in repository guix.
commit bca72b39c7548ac861d904f6230ef2c3a0fb0110
Author: Efraim Flashner <[email protected]>
Date: Thu Jul 26 13:20:20 2018 +0300
gnu: python-qsintilla: Fix building.
* gnu/packages/qt.scm (python-qscintilla)[arguments]: Extend custom
'configure phase to also patch the 'installed.txt' file.
---
gnu/packages/qt.scm | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index 19dc635..cefceb6 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -1959,6 +1959,10 @@ indicators, code completion and call tips.")
"Qsci/Makefile")
(("\\$\\(INSTALL_ROOT\\)/gnu/store/[^/]+")
(assoc-ref outputs "out")))
+ ;; And fix the installed.txt file
+ (substitute* "installed.txt"
+ (("/gnu/store/[^/]+")
+ (assoc-ref outputs "out")))
#t)))))
(inputs
`(("qscintilla" ,qscintilla)