gnu: libetpan: Use 'modify-phases'.

* gnu/packages/mail.scm (libetpan)[arguments]: Use 'modify-phases'.
master
Efraim Flashner 2016-08-13 21:18:28 +03:00
parent a9a023ad40
commit 602460ea2e
No known key found for this signature in database
GPG Key ID: F4C1D3917EACEE93
1 changed files with 6 additions and 6 deletions

View File

@ -608,12 +608,12 @@ useful features.")
("expat" ,expat)
("zlib" ,zlib)))
(arguments
'(#:phases (alist-cons-after
'unpack 'autogen
(lambda _
(setenv "NOCONFIGURE" "true")
(zero? (system* "sh" "autogen.sh")))
%standard-phases)
'(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'autogen
(lambda _
(setenv "NOCONFIGURE" "true")
(zero? (system* "sh" "autogen.sh")))))
#:configure-flags
'("--disable-static" "--disable-db")))
(home-page "http://www.etpan.org/libetpan.html")