gnu: perl-tk: Build sequentially.
Fixes <http://bugs.gnu.org/18262>. * gnu/packages/tcl.scm (perl-tk)[arguments]: Add #:parallel-build? #f.
This commit is contained in:
parent
886cf584db
commit
cb150ca34f
|
@ -161,8 +161,8 @@ X11 GUIs.")
|
||||||
(home-page "http://www.tcl.tk/")
|
(home-page "http://www.tcl.tk/")
|
||||||
(synopsis "Graphical user interface toolkit for Tcl")
|
(synopsis "Graphical user interface toolkit for Tcl")
|
||||||
(description
|
(description
|
||||||
"Tk is a graphical toolkit for building graphical user interfaces
|
"Tk is a graphical toolkit for building graphical user
|
||||||
(GUIs) in the Tcl language.")
|
interfaces (GUIs) in the Tcl language.")
|
||||||
(license (package-license tcl))))
|
(license (package-license tcl))))
|
||||||
|
|
||||||
(define-public perl-tk
|
(define-public perl-tk
|
||||||
|
@ -185,7 +185,10 @@ X11 GUIs.")
|
||||||
("libjpeg" ,libjpeg)))
|
("libjpeg" ,libjpeg)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:make-maker-flags `(,(string-append
|
`(#:make-maker-flags `(,(string-append
|
||||||
"X11=" (assoc-ref %build-inputs "libx11")))))
|
"X11=" (assoc-ref %build-inputs "libx11")))
|
||||||
|
|
||||||
|
;; Fails to build in parallel: <http://bugs.gnu.org/18262>.
|
||||||
|
#:parallel-build? #f))
|
||||||
(synopsis "Graphical user interface toolkit for Perl")
|
(synopsis "Graphical user interface toolkit for Perl")
|
||||||
(description
|
(description
|
||||||
"Tk is a Graphical User Interface ToolKit.")
|
"Tk is a Graphical User Interface ToolKit.")
|
||||||
|
|
Loading…
Reference in New Issue