gnu: commencement: Fix gash and gash-utils version references.
* gnu/packages/commencement.scm (gash-boot): When configuring, use the version of the Gash package instead the version of Guile! (gash-utils-boot): Likewise, but for Gash-Utils.
This commit is contained in:
parent
668a519870
commit
0b870f7915
1 changed files with 3 additions and 2 deletions
|
@ -152,7 +152,7 @@ pure Scheme to Tar and decompression in one easy step.")
|
||||||
(use-modules (guix build gnu-bootstrap))
|
(use-modules (guix build gnu-bootstrap))
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(replace 'configure
|
(replace 'configure
|
||||||
(bootstrap-configure ,(version) "gash" "scripts"))
|
(bootstrap-configure ,(package-version gash) "gash" "scripts"))
|
||||||
(replace 'build (bootstrap-build "gash"))
|
(replace 'build (bootstrap-build "gash"))
|
||||||
(replace 'install (bootstrap-install "gash" "scripts"))
|
(replace 'install (bootstrap-install "gash" "scripts"))
|
||||||
(add-after 'install 'install-symlinks
|
(add-after 'install 'install-symlinks
|
||||||
|
@ -214,7 +214,8 @@ pure Scheme to Tar and decompression in one easy step.")
|
||||||
(delete-file "scripts/template.in")
|
(delete-file "scripts/template.in")
|
||||||
#t))
|
#t))
|
||||||
(replace 'configure
|
(replace 'configure
|
||||||
(bootstrap-configure ,(version) "gash" "scripts"))
|
(bootstrap-configure ,(package-version gash-utils)
|
||||||
|
"gash" "scripts"))
|
||||||
(replace 'build (bootstrap-build "gash"))
|
(replace 'build (bootstrap-build "gash"))
|
||||||
(replace 'install (bootstrap-install "gash" "scripts"))
|
(replace 'install (bootstrap-install "gash" "scripts"))
|
||||||
;; XXX: The scripts should add Gash to their load paths and
|
;; XXX: The scripts should add Gash to their load paths and
|
||||||
|
|
Reference in a new issue