gnu: lxsession: Remove custom bootstrap phase.

* gnu/packages/lxde.scm (lxsession)[arguments]: Remove autoreconf phase and
end rm-stamp phase with #T.
This commit is contained in:
Ricardo Wurmus 2018-11-11 10:16:43 +01:00
parent f1f1cebdd3
commit a49b5322c5
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 5 additions and 4 deletions

View File

@ -7,6 +7,7 @@
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2018 Ison111 <ison111@protonmail.com>
;;; Copyright © 2018 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net>
;;;
;;; 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)))