guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: guile-ssh: Put 'autoreconf' phase after 'unpack', not before


From: Mark H. Weaver
Subject: 01/01: gnu: guile-ssh: Put 'autoreconf' phase after 'unpack', not before 'configure'.
Date: Wed, 28 Jan 2015 20:26:46 +0000

mhw pushed a commit to branch master
in repository guix.

commit 9dcd1b3b1c81aa71cf954fa5fca1c15cd3225885
Author: Mark H Weaver <address@hidden>
Date:   Wed Jan 28 15:23:40 2015 -0500

    gnu: guile-ssh: Put 'autoreconf' phase after 'unpack', not before 
'configure'.
    
    * gnu/packages/ssh.scm (guile-ssh): Add 'autoreconf' phase after 'unpack'
      instead of before 'configure', so that it will be before
      'patch-usr-bin-file' and other similar phases.
---
 gnu/packages/ssh.scm |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm
index 79e8077..7cdc305 100644
--- a/gnu/packages/ssh.scm
+++ b/gnu/packages/ssh.scm
@@ -1,6 +1,6 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2013, 2014 Andreas Enge <address@hidden>
-;;; Copyright © 2014 Mark H Weaver <address@hidden>
+;;; Copyright © 2014, 2015 Mark H Weaver <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -197,8 +197,8 @@ Additionally, various channel-specific options can be 
negotiated.")
                 "1sbxhmynmpwfjwb3dp6lrc3cxi5kffqmb6klhx7wnkgqxvs61lsw"))))
     (build-system gnu-build-system)
     (arguments
-     '(#:phases (alist-cons-before
-                 'configure 'autoreconf
+     '(#:phases (alist-cons-after
+                 'unpack 'autoreconf
                  (lambda* (#:key inputs #:allow-other-keys)
                    (chmod "doc/version.texi" #o777) ;make it writable
                    (zero? (system* "autoreconf" "-vfi")))



reply via email to

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