diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-11-11 11:22:22 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-11-11 11:22:22 +0100 |
commit | a69cc70deaa641baa50d580fb1315a69615cc381 (patch) | |
tree | 61d490a96135b4de0cab2d3de15dd47240fa57f5 /gnu | |
parent | d212ed2f00e6639c95b4185685617285c8cafdfd (diff) | |
download | patches-a69cc70deaa641baa50d580fb1315a69615cc381.tar patches-a69cc70deaa641baa50d580fb1315a69615cc381.tar.gz |
gnu: lrdf: Replace bootstrap phase.
* gnu/packages/rdf.scm (lrdf)[arguments]: Remove autoreconf phase; replace
bootstrap phase instead.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/rdf.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/rdf.scm b/gnu/packages/rdf.scm index e48a4fb08c..22ea21dd94 100644 --- a/gnu/packages/rdf.scm +++ b/gnu/packages/rdf.scm @@ -142,9 +142,9 @@ Java Lucene text search engine API to C++.") (("instances_test remove_test") "instances_test") (("\\$\\(TESTS\\) remove_test") "$(TESTS)")) #t)) - (add-after 'remove-out-of-tree-references 'autoreconf - (lambda _ - (zero? (system* "autoreconf" "-vfi"))))))) + ;; The default bootstrap phase executes autogen.sh, which fails. + (replace 'bootstrap + (lambda _ (invoke "autoreconf" "-vif") #t))))) (inputs `(("raptor" ,raptor2) ("cyrus-sasl" ,cyrus-sasl) |