guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/05: gnu: hdparm: Use ‘modify-phases’ syntax.


From: Tobias Geerinckx-Rice
Subject: 05/05: gnu: hdparm: Use ‘modify-phases’ syntax.
Date: Thu, 30 Mar 2017 22:05:31 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit ec23833267ac859d3d45f65603e55415475126ba
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Fri Mar 31 00:30:16 2017 +0200

    gnu: hdparm: Use ‘modify-phases’ syntax.
    
    * gnu/packages/linux.scm (hdparm): Use ‘modify-phases’.
---
 gnu/packages/linux.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 7a9ecf0..f801146 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -2283,8 +2283,10 @@ thanks to the use of namespaces.")
                       (list (string-append "binprefix=" out)
                             (string-append "manprefix=" out)
                             "CC=gcc"))
-       #:phases (alist-delete 'configure %standard-phases)
-       #:tests? #f))  ; no test suite
+       #:phases
+       (modify-phases %standard-phases
+         (delete 'configure))           ; no configure script
+       #:tests? #f))                    ; no test suite
     (home-page "https://sourceforge.net/projects/hdparm/";)
     (synopsis "View and tune ATA disk drive parameters")
     (description



reply via email to

[Prev in Thread] Current Thread [Next in Thread]