guix-commits
[Top][All Lists]
Advanced

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

03/10: gnu: lxsession: Remove custom bootstrap phase.


From: Ricardo Wurmus
Subject: 03/10: gnu: lxsession: Remove custom bootstrap phase.
Date: Sun, 11 Nov 2018 05:24:22 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit a49b5322c56cd5b7778a8c8ffea95f9c28339cc7
Author: Ricardo Wurmus <address@hidden>
Date:   Sun Nov 11 10:16:43 2018 +0100

    gnu: lxsession: Remove custom bootstrap phase.
    
    * gnu/packages/lxde.scm (lxsession)[arguments]: Remove autoreconf phase and
    end rm-stamp phase with #T.
---
 gnu/packages/lxde.scm | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/lxde.scm b/gnu/packages/lxde.scm
index c45beb8..1f32ec3 100644
--- a/gnu/packages/lxde.scm
+++ b/gnu/packages/lxde.scm
@@ -7,6 +7,7 @@
 ;;; Copyright © 2018 Tobias Geerinckx-Rice <address@hidden>
 ;;; Copyright © 2018 Ison111 <address@hidden>
 ;;; Copyright © 2018 Ludovic Courtès <address@hidden>
+;;; Copyright © 2018 Ricardo Wurmus <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -419,10 +420,10 @@ in LXDE.")
        (modify-phases %standard-phases
          (add-after 'unpack 'rm-stamp
            (lambda _
-             (for-each delete-file (find-files "." "\\.stamp$"))))
-         (add-after 'rm-stamp 'autoreconf
-           (lambda _
-             (zero? (system* "autoreconf" "-vfi")))))))
+             (for-each delete-file (find-files "." "\\.stamp$"))
+             ;; Force regeneration of configure script.
+             (delete-file "configure")
+             #t)))))
     (inputs
      `(("gtk+-2" ,gtk+-2)
        ("polkit" ,polkit)))



reply via email to

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