gnu: ruby-libxml: Fix build.
authorChristopher Baines <mail@cbaines.net>
Sun, 1 Nov 2020 13:38:46 +0000 (13:38 +0000)
committerChristopher Baines <mail@cbaines.net>
Sun, 1 Nov 2020 13:38:46 +0000 (13:38 +0000)
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

index ee0f925..73bf852 100644 (file)
@@ -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" ))))