gnu: lrdf: Fix phases.

Fixes a regression caused by 722ec72244.

* gnu/packages/rdf.scm (lrdf)[arguments]: Swap order of 'alist-cons-after'
  calls.
master
Mark H Weaver 2015-03-07 22:39:43 -05:00
parent 0e396872a6
commit 5c3f2a5a77
1 changed files with 15 additions and 15 deletions

View File

@ -127,6 +127,10 @@ Java Lucene text search engine API to C++.")
(build-system gnu-build-system)
(arguments
'(#:phases (alist-cons-after
'remove-out-of-tree-references 'autoreconf
(lambda _
(zero? (system* "autoreconf" "-vfi")))
(alist-cons-after
'unpack 'remove-out-of-tree-references
(lambda _
;; remove symlinks to files in /usr/
@ -141,10 +145,6 @@ Java Lucene text search engine API to C++.")
(substitute* "examples/Makefile.am"
(("instances_test remove_test") "instances_test")
(("\\$\\(TESTS\\) remove_test") "$(TESTS)")))
(alist-cons-after
'remove-out-of-tree-references 'autoreconf
(lambda _
(zero? (system* "autoreconf" "-vfi")))
%standard-phases))))
(inputs
`(("raptor" ,raptor2)