me
/
guix
Archived
1
0
Fork 0

gnu: libuv: Use 'modify-phases' syntax.

* gnu/packages/libevent.scm (libuv)[arguments]<#:phases>: Use 'modify-phases'.
master
Marius Bakke 2017-11-19 15:23:04 +01:00
parent 48a064a379
commit 61bed15707
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 6 additions and 7 deletions

View File

@ -131,13 +131,12 @@ programs.")
"0pbq9kb96fp131fcmmpjngh8n4nsnwafzirdi8j934wnmnlsyjnn")))) "0pbq9kb96fp131fcmmpjngh8n4nsnwafzirdi8j934wnmnlsyjnn"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
'(#:phases (alist-cons-after '(#:phases (modify-phases %standard-phases
'unpack 'autogen (add-after 'unpack 'autogen
(lambda _ (lambda _
;; Fashionable people don't run 'make dist' these days, so ;; Fashionable people don't run 'make dist' these days, so
;; we need to do that ourselves. ;; we need to do that ourselves.
(zero? (system* "sh" "autogen.sh"))) (zero? (system* "sh" "autogen.sh")))))
%standard-phases)
;; XXX: Some tests want /dev/tty, attempt to make connections, etc. ;; XXX: Some tests want /dev/tty, attempt to make connections, etc.
#:tests? #f)) #:tests? #f))