mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 06:46:50 +01:00
gnu: postfix-minimal: Move deletion of configure phase to the top.
* gnu/packages/mail.scm (postfix-minimal)[arguments]: Move deletion clause to avoid confusion.
This commit is contained in:
parent
971994eb08
commit
5fe9be77ae
1 changed files with 2 additions and 2 deletions
|
@ -4988,6 +4988,7 @@ (define-public postfix-minimal
|
|||
#: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 @@ (define-public postfix-minimal
|
|||
;; 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
|
||||
|
|
Loading…
Reference in a new issue