diff options
author | Ludovic Courtès <ludo@gnu.org> | 2012-11-07 19:13:10 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-11-07 19:13:10 +0100 |
commit | 1227fabb658218447a3b08f7974e7bf0b886a7ed (patch) | |
tree | c4b5ac5e2b512809ef2a081249d51b0fc975daeb /guix-package.in | |
parent | 74fe2df2ad6bd37b7e0e3f7fb417ab88e708bba7 (diff) | |
download | guix-1227fabb658218447a3b08f7974e7bf0b886a7ed.tar guix-1227fabb658218447a3b08f7974e7bf0b886a7ed.tar.gz |
guix-package: Fix invalid module use.
* guix-package.in: Use (distro packages guile), not (... base).
Diffstat (limited to 'guix-package.in')
-rw-r--r-- | guix-package.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix-package.in b/guix-package.in index a282fe7deb..c60b15bf28 100644 --- a/guix-package.in +++ b/guix-package.in @@ -45,7 +45,7 @@ exec ${GUILE-@GUILE@} -L "@guilemoduledir@" -l "$0" \ #:use-module (srfi srfi-34) #:use-module (srfi srfi-37) #:autoload (distro) (find-packages-by-name) - #:use-module (distro packages base) + #:use-module (distro packages guile) #:export (guix-package)) (define %store |