gnu: lrdf: Fix phases.
Fixes a regression caused by 722ec72244
.
* gnu/packages/rdf.scm (lrdf)[arguments]: Swap order of 'alist-cons-after'
calls.
This commit is contained in:
parent
0e396872a6
commit
5c3f2a5a77
|
@ -127,6 +127,10 @@ Java Lucene text search engine API to C++.")
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases (alist-cons-after
|
'(#:phases (alist-cons-after
|
||||||
|
'remove-out-of-tree-references 'autoreconf
|
||||||
|
(lambda _
|
||||||
|
(zero? (system* "autoreconf" "-vfi")))
|
||||||
|
(alist-cons-after
|
||||||
'unpack 'remove-out-of-tree-references
|
'unpack 'remove-out-of-tree-references
|
||||||
(lambda _
|
(lambda _
|
||||||
;; remove symlinks to files in /usr/
|
;; remove symlinks to files in /usr/
|
||||||
|
@ -141,10 +145,6 @@ Java Lucene text search engine API to C++.")
|
||||||
(substitute* "examples/Makefile.am"
|
(substitute* "examples/Makefile.am"
|
||||||
(("instances_test remove_test") "instances_test")
|
(("instances_test remove_test") "instances_test")
|
||||||
(("\\$\\(TESTS\\) remove_test") "$(TESTS)")))
|
(("\\$\\(TESTS\\) remove_test") "$(TESTS)")))
|
||||||
(alist-cons-after
|
|
||||||
'remove-out-of-tree-references 'autoreconf
|
|
||||||
(lambda _
|
|
||||||
(zero? (system* "autoreconf" "-vfi")))
|
|
||||||
%standard-phases))))
|
%standard-phases))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("raptor" ,raptor2)
|
`(("raptor" ,raptor2)
|
||||||
|
|
Loading…
Reference in New Issue