diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-06-13 11:42:33 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-06-13 11:42:33 +0200 |
commit | 9d0b8fbd78552e44dcd0a7ee9933ea1e3709b07a (patch) | |
tree | d795b78d6e3670af30bd51db0ee3d99496abd5d3 | |
parent | b777d784a0cb05a25dfda2c0561fe0af562c922a (diff) | |
download | guix-9d0b8fbd78552e44dcd0a7ee9933ea1e3709b07a.tar guix-9d0b8fbd78552e44dcd0a7ee9933ea1e3709b07a.tar.gz |
pull: Copy and compile gnu.scm.
* guix/build/pull.scm (build-guix): Copy gnu.scm to OUT.
-rw-r--r-- | guix/build/pull.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/guix/build/pull.scm b/guix/build/pull.scm index 4bad88fe42..e5b8797503 100644 --- a/guix/build/pull.scm +++ b/guix/build/pull.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2013, 2014 Ludovic Courtès <ludo@gnu.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -94,10 +94,11 @@ exit with non-zero." (format #t "copying and compiling Guix to `~a'...~%" out) - ;; Copy everything under guix/ and gnu/ plus guix.scm. + ;; Copy everything under guix/ and gnu/ plus {guix,gnu}.scm. (copy-recursively "guix" (string-append out "/guix")) (copy-recursively "gnu" (string-append out "/gnu")) (copy-file "guix.scm" (string-append out "/guix.scm")) + (copy-file "gnu.scm" (string-append out "/gnu.scm")) ;; Add a fake (guix config) module to allow the other modules to be ;; compiled. The user's (guix config) is the one that will be used. |