mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: cinnamon-desktop: Use Guix's built-in bootstrap phase.
* gnu/packages/cinnamon.scm (cinnamon-desktop)[arguments]: Remove 'autoconf' phase. Add 'skip-premature-configure' phase.
This commit is contained in:
parent
0edc232be9
commit
b22c44f1ea
1 changed files with 4 additions and 6 deletions
|
@ -1,5 +1,6 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2017 Nils Gillmann <ng0@n0.is>
|
;;; Copyright © 2017 Nils Gillmann <ng0@n0.is>
|
||||||
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -50,13 +51,10 @@ (define-public cinnamon-desktop
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'autoconf
|
(add-before 'bootstrap 'skip-premature-configure
|
||||||
(lambda _
|
(lambda _
|
||||||
(mkdir-p "m4")
|
(setenv "NOCONFIGURE" "set")
|
||||||
(zero?
|
#t)))))
|
||||||
(and (system* "glib-gettextize" "--force" "--copy")
|
|
||||||
(system* "intltoolize" "--force" "--copy" "--automake")
|
|
||||||
(system* "autoreconf" "--verbose" "--force" "--install"))))))))
|
|
||||||
;; TODO: package 'libgsystem'.
|
;; TODO: package 'libgsystem'.
|
||||||
(inputs
|
(inputs
|
||||||
`(("accountsservice" ,accountsservice)
|
`(("accountsservice" ,accountsservice)
|
||||||
|
|
Loading…
Reference in a new issue