gnu: lxsession: Remove custom bootstrap phase.
* gnu/packages/lxde.scm (lxsession)[arguments]: Remove autoreconf phase and end rm-stamp phase with #T.master
parent
f1f1cebdd3
commit
a49b5322c5
|
@ -7,6 +7,7 @@
|
||||||
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2018 Ison111 <ison111@protonmail.com>
|
;;; Copyright © 2018 Ison111 <ison111@protonmail.com>
|
||||||
;;; Copyright © 2018 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2018 Ludovic Courtès <ludo@gnu.org>
|
||||||
|
;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -419,10 +420,10 @@ in LXDE.")
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'rm-stamp
|
(add-after 'unpack 'rm-stamp
|
||||||
(lambda _
|
(lambda _
|
||||||
(for-each delete-file (find-files "." "\\.stamp$"))))
|
(for-each delete-file (find-files "." "\\.stamp$"))
|
||||||
(add-after 'rm-stamp 'autoreconf
|
;; Force regeneration of configure script.
|
||||||
(lambda _
|
(delete-file "configure")
|
||||||
(zero? (system* "autoreconf" "-vfi")))))))
|
#t)))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("gtk+-2" ,gtk+-2)
|
`(("gtk+-2" ,gtk+-2)
|
||||||
("polkit" ,polkit)))
|
("polkit" ,polkit)))
|
||||||
|
|
Reference in New Issue