diff options
author | Ludovic Courtès <ludo@gnu.org> | 2012-09-26 21:58:48 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-09-26 22:00:58 +0200 |
commit | 1f455fdca60c90710322d99ac529a31d71764a0d (patch) | |
tree | 0c16dde04916403e121efe843ab4227a0aad0b0a /distro.scm | |
parent | 8ffae202acca491c7ebceb094018c79a6d5f2b3a (diff) | |
download | guix-1f455fdca60c90710322d99ac529a31d71764a0d.tar guix-1f455fdca60c90710322d99ac529a31d71764a0d.tar.gz |
distro: Rename (distro ...) to (distro packages ...).
* distro/base.scm, distro/ld-wrapper.scm: Move to `distro/packages'.
Adjust LD-WRAPPER-BOOT3 input file name accordingly.
* Makefile.am (MODULES): Adjust accordingly.
* distro.scm (%distro-module-directory): Change to "/distro/packages".
* guix/build-system/gnu.scm (standard-inputs): Change module name
to (distro packages base).
* tests/packages.scm (test-packages): Likewise.
Diffstat (limited to 'distro.scm')
-rw-r--r-- | distro.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/distro.scm b/distro.scm index b21b0e6184..79e09a3cc6 100644 --- a/distro.scm +++ b/distro.scm @@ -48,7 +48,7 @@ (define %distro-module-directory ;; Absolute path of the (distro ...) module root. (string-append (dirname (search-path %load-path "distro.scm")) - "/distro")) + "/distro/packages")) (define (package-files) "Return the list of files that implement distro modules." |