mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: dblatex: Do not use python setuptools for building.
* gnu/packages/docbook.scm (dblatex)[arguments]: Set #:use-setuptools? to false.
This commit is contained in:
parent
463fb7d0c8
commit
3cc0342b45
1 changed files with 5 additions and 0 deletions
|
@ -192,6 +192,11 @@ (define-public dblatex
|
|||
("libxslt" ,libxslt))) ;for xsltproc
|
||||
(arguments
|
||||
`(#:python ,python-2 ;'print' syntax
|
||||
;; XXX: Disable usage of setuptools, even though it is supported.
|
||||
;; This causes an invalid "package_base" in out/bin/.dblatex-real
|
||||
;; due to a missing leading '/'. See this thread for details:
|
||||
;; https://lists.gnu.org/archive/html/guix-devel/2016-12/msg00030.html
|
||||
#:use-setuptools? #f
|
||||
#:tests? #f ;no 'test' command
|
||||
#:phases
|
||||
(alist-cons-after
|
||||
|
|
Loading…
Reference in a new issue