guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: ruby-libxml: Fix build.


From: guix-commits
Subject: branch master updated: gnu: ruby-libxml: Fix build.
Date: Sun, 01 Nov 2020 08:41:00 -0500

This is an automated email from the git hooks/post-receive script.

cbaines pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 5b98944  gnu: ruby-libxml: Fix build.
5b98944 is described below

commit 5b98944d3dfd2921985fa1b44c54349a59b276e0
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Sun Nov 1 13:38:46 2020 +0000

    gnu: ruby-libxml: Fix build.
    
    rdoc fails to install the documentation, so disable rdoc for now, as I'm
    unsure how to fix this.
    
    * gnu/packages/ruby.scm (ruby-libxml)[arguments]: Add --no-document
    to #:gem-flags.
---
 gnu/packages/ruby.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index ee0f925..73bf852 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -2416,7 +2416,9 @@ extensions.")
     (arguments
      '(#:tests? #f ; test suite hangs for unknown reason
        #:gem-flags
-       (list "--"
+       (list "--no-document"            ; TODO: Re-enable when documentation
+                                        ; generation works
+             "--"
              (string-append "--with-xml2-include="
                             (assoc-ref %build-inputs "libxml2")
                             "/include/libxml2" ))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]