mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 14:28:15 -05:00
gnu: qtbase: Do not capture Python from native-inputs.
* gnu/packages/qt.scm (qtbase) [phases]: Add do-not-capture-python phase.
This commit is contained in:
parent
b6e7fe40e5
commit
4012ec0276
1 changed files with 6 additions and 0 deletions
|
@ -695,6 +695,12 @@ (define-public qtbase
|
|||
(substitute* "src/corelib/CMakeLists.txt"
|
||||
(("/bin/ls")
|
||||
(search-input-file inputs "bin/ls")))))
|
||||
(add-after 'patch-source-shebangs 'do-not-capture-python
|
||||
(lambda _
|
||||
(substitute* '("mkspecs/features/uikit/devices.py"
|
||||
"util/testrunner/qt-testrunner.py")
|
||||
(((which "python3"))
|
||||
"/usr/bin/env python3"))))
|
||||
(replace 'configure
|
||||
(assoc-ref %standard-phases 'configure))
|
||||
(replace 'build
|
||||
|
|
Loading…
Reference in a new issue