diff options
author | Ludovic Courtès <ludo@gnu.org> | 2018-05-28 22:00:11 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-06-01 15:21:28 +0200 |
commit | 331ac4cc239727992329207ba428b3f26cae91d9 (patch) | |
tree | 14fd0a1c426ad16bf4c6b19990f89265f3f1c28d /guix/man-db.scm | |
parent | 33d8a871042e73d6b236793d02e5a8287a47ebe4 (diff) | |
download | gnu-guix-331ac4cc239727992329207ba428b3f26cae91d9.tar gnu-guix-331ac4cc239727992329207ba428b3f26cae91d9.tar.gz |
profiles: Use 'with-extensions'.
* guix/profiles.scm (manual-database)[build]: Use 'with-extensions'.
Remove 'add-to-load-path' call.
* guix/man-db.scm: Use (gdbm) the normal way; remove 'module-autoload!'
call.
Diffstat (limited to 'guix/man-db.scm')
-rw-r--r-- | guix/man-db.scm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/guix/man-db.scm b/guix/man-db.scm index 732aef1083..4cef874f8b 100644 --- a/guix/man-db.scm +++ b/guix/man-db.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2017 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2017, 2018 Ludovic Courtès <ludo@gnu.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -19,6 +19,7 @@ (define-module (guix man-db) #:use-module (guix zlib) #:use-module ((guix build utils) #:select (find-files)) + #:use-module (gdbm) ;gdbm-ffi #:use-module (srfi srfi-9) #:use-module (srfi srfi-26) #:use-module (ice-9 match) @@ -44,9 +45,6 @@ ;;; ;;; Code: -;; Load 'gdbm-ffi' at run time to simplify the job of 'imported-modules' & co. -(module-autoload! (current-module) '(gdbm) '(gdbm-open GDBM_WRCREAT)) - (define-record-type <mandb-entry> (mandb-entry file-name name section synopsis kind) mandb-entry? |