gnu: python-qscintilla: Remove result code plumbing.
* gnu/packages/qt.scm (python-qscintilla)[arguments]: In the 'configure' phase, remove result code plumbing that is no longer needed, since 'invoke' never returns #false.
This commit is contained in:
parent
a6af4d25f1
commit
76c7fc436a
|
@ -1715,15 +1715,14 @@ indicators, code completion and call tips.")
|
||||||
(replace 'configure
|
(replace 'configure
|
||||||
(lambda* (#:key outputs configure-flags #:allow-other-keys)
|
(lambda* (#:key outputs configure-flags #:allow-other-keys)
|
||||||
(chdir "Python")
|
(chdir "Python")
|
||||||
(and (apply invoke "python3" "configure.py"
|
(apply invoke "python3" "configure.py"
|
||||||
configure-flags)
|
configure-flags)
|
||||||
;; Install to the right directory
|
;; Install to the right directory
|
||||||
(begin
|
(substitute* '("Makefile"
|
||||||
(substitute* '("Makefile"
|
"Qsci/Makefile")
|
||||||
"Qsci/Makefile")
|
(("\\$\\(INSTALL_ROOT\\)/gnu/store/[^/]+")
|
||||||
(("\\$\\(INSTALL_ROOT\\)/gnu/store/[^/]+")
|
(assoc-ref outputs "out")))
|
||||||
(assoc-ref outputs "out")))
|
#t)))))
|
||||||
#t)))))))
|
|
||||||
(inputs
|
(inputs
|
||||||
`(("qscintilla" ,qscintilla)
|
`(("qscintilla" ,qscintilla)
|
||||||
("python" ,python)
|
("python" ,python)
|
||||||
|
|
Loading…
Reference in New Issue