diff options
author | Ludovic Courtès <ludo@gnu.org> | 2012-09-26 22:17:41 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-09-26 23:00:36 +0200 |
commit | 1722d6800fb769804600f91a442e07903f8af00a (patch) | |
tree | ebc5d6a920145ef47d8f56df797a02b47b5a2a70 /distro.scm | |
parent | 1f455fdca60c90710322d99ac529a31d71764a0d (diff) | |
download | patches-1722d6800fb769804600f91a442e07903f8af00a.tar patches-1722d6800fb769804600f91a442e07903f8af00a.tar.gz |
distro: Add the `guile', `typesetting', and `databases' package modules.
* distro.scm (package-files): Adjust PREFIX-LEN to use the top-level
directory, not %DISTRO-MODULE-DIRECTORY.
* distro/packages/base.scm (guile-reader, guile-reader/guile-1.8,
guile-reader/guile-2.0, lout, recutils): Move to...
* distro/packages/guile.scm, distro/packages/typesetting.scm,
distro/packages/databases.scm: ... here. New files.
* Makefile.am (MODULES): Add them.
(EXTRA_DIST): Add `.dir-locals.el'.
* .dir-locals.el: New file, with settings formerly in `base.scm'.
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 79e09a3cc6..fc48285bbf 100644 --- a/distro.scm +++ b/distro.scm @@ -53,7 +53,7 @@ (define (package-files) "Return the list of files that implement distro modules." (define prefix-len - (string-length (dirname %distro-module-directory))) + (string-length (dirname (search-path %load-path "distro.scm")))) (file-system-fold (const #t) ; enter? (lambda (path stat result) ; leaf |