diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-11-09 22:32:21 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-11-09 22:33:45 +0100 |
commit | f81ac34dd9ab0f2ebaabf2cf382bd52d0d78396a (patch) | |
tree | f66eec8952dcbd4e09b346ea8132b75af011bd3d /Makefile.am | |
parent | 4684f301d5a7ff39a913c8f06507f67ec9b4a1cd (diff) | |
download | guix-f81ac34dd9ab0f2ebaabf2cf382bd52d0d78396a.tar guix-f81ac34dd9ab0f2ebaabf2cf382bd52d0d78396a.tar.gz |
pull: Use the build procedure provided by the newly-downloaded Guix.
Fixes <http://bugs.gnu.org/18534>.
* guix/scripts/pull.scm (with-environment-variable, with-PATH): New
macros.
(temporary-directory, first-directory, interned-then-deleted): New
procedures.
(unpack): Rewrite to do the unpacking in the current process rather
than as a separate derivation.
(%self-build-file): New variable.
(build-from-source): New procedure.
(build-and-install): Use it.
* guix/build/pull.scm (build-guix): Rename 'tarball' argument to
'source'. Remove #:tar and #:gzip parameters, as well as 'tar'
invocation. Remove 'scandir' invocation. Wrap body in
'with-directory-excursion'.
* build-aux/build-self.scm: New file.
* Makefile.am (EXTRA_DIST): Add it.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index b13fcbc053..3350fd6994 100644 --- a/Makefile.am +++ b/Makefile.am @@ -223,6 +223,7 @@ EXTRA_DIST = \ ROADMAP \ TODO \ .dir-locals.el \ + build-aux/build-self.scm \ build-aux/hydra/gnu-system.scm \ build-aux/hydra/demo-os.scm \ build-aux/hydra/guix.scm \ |