guix-commits
[Top][All Lists]
Advanced

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

03/05: gnu: postfix-minimal: Move deletion of configure phase to the top


From: guix-commits
Subject: 03/05: gnu: postfix-minimal: Move deletion of configure phase to the top.
Date: Thu, 7 Sep 2023 15:32:53 -0400 (EDT)

rekado pushed a commit to branch wip-postfix
in repository guix.

commit 5fe9be77ae8eef7a830ed7513b9b019110c55129
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Thu Sep 7 20:36:09 2023 +0200

    gnu: postfix-minimal: Move deletion of configure phase to the top.
    
    * gnu/packages/mail.scm (postfix-minimal)[arguments]: Move deletion clause 
to
    avoid confusion.
---
 gnu/packages/mail.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 6e86641fc1..90e2f8176b 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -4988,6 +4988,7 @@ features:
       #:tests? #false ;no check target
       #:phases
       #~(modify-phases %standard-phases
+          (delete 'configure)
           (add-before 'build 'patch-/bin/sh
             (lambda _
               (substitute* (find-files "." "^Makefile.in")
@@ -5074,8 +5075,7 @@ features:
           ;; replacing it with the upgrade target allows for
           ;; a non-interactive install.
           (replace 'install
-            (lambda _ (invoke "make" "upgrade")))
-          (delete 'configure))))
+            (lambda _ (invoke "make" "upgrade"))))))
     (inputs
      (list bdb libnsl))
     (native-inputs



reply via email to

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