gnu: geeqie: Remove custom bootstrap phase.
* gnu/packages/image-viewers.scm (geeqie)[arguments]: Remove invocation of autogen.sh script; rename "autogen" phase to "pre-bootstrap".
This commit is contained in:
parent
f67cb8eb8c
commit
027f97b13f
|
@ -8,7 +8,7 @@
|
||||||
;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com>
|
;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com>
|
||||||
;;; Copyright © 2017 nee <nee-git@hidamari.blue>
|
;;; Copyright © 2017 nee <nee-git@hidamari.blue>
|
||||||
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -126,21 +126,18 @@ actions.")
|
||||||
|
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'autogen
|
(add-before 'bootstrap 'pre-bootstrap
|
||||||
(lambda _
|
(lambda _
|
||||||
(define (write-dummy-changelog port)
|
(define (write-dummy-changelog port)
|
||||||
(display "See Git history for a change log.\n" port))
|
(display "See Git history for a change log.\n" port))
|
||||||
|
|
||||||
(setenv "NOCONFIGURE" "true")
|
|
||||||
|
|
||||||
;; Create ChangeLog{,.html} to placate the makefile, which would
|
;; Create ChangeLog{,.html} to placate the makefile, which would
|
||||||
;; otherwise require access to the Git repo.
|
;; otherwise require access to the Git repo.
|
||||||
(call-with-output-file "ChangeLog"
|
(call-with-output-file "ChangeLog"
|
||||||
write-dummy-changelog)
|
write-dummy-changelog)
|
||||||
(call-with-output-file "ChangeLog.html"
|
(call-with-output-file "ChangeLog.html"
|
||||||
write-dummy-changelog)
|
write-dummy-changelog)
|
||||||
|
(setenv "NOCONFIGURE" "true")
|
||||||
(zero? (system* "sh" "autogen.sh")))))))
|
#t)))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("clutter" ,clutter)
|
`(("clutter" ,clutter)
|
||||||
("libchamplain" ,libchamplain)
|
("libchamplain" ,libchamplain)
|
||||||
|
|
Loading…
Reference in New Issue