diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-03-08 23:39:03 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-03-08 23:42:53 +0100 |
commit | 7447aa36e16fb77f75df4d3369db9c942615632e (patch) | |
tree | 1cf30beb80a848a1c4c6232d02476de542b0d232 /guix | |
parent | d75e8f36a80be8155f40678e30d8384c205cf96f (diff) |
utils: Make sure to use the right 'bytevector->string'.
In Guile 2.2, (rnrs io ports) exports 'bytevector->string', which
conflicts with that of (ice-9 iconv).
* guix/utils.scm: Hide 'bytevector->string' from (rnrs io ports).
Diffstat (limited to 'guix')
-rw-r--r-- | guix/utils.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/utils.scm b/guix/utils.scm index 72dc0687a4..2d59cccf3c 100644 --- a/guix/utils.scm +++ b/guix/utils.scm @@ -31,7 +31,7 @@ #:use-module (srfi srfi-60) #:use-module (rnrs bytevectors) #:use-module (ice-9 binary-ports) - #:autoload (rnrs io ports) (make-custom-binary-input-port) + #:use-module ((rnrs io ports) #:hide (bytevector->string)) #:use-module ((rnrs bytevectors) #:select (bytevector-u8-set!)) #:use-module (guix memoization) #:use-module ((guix build utils) #:select (dump-port)) |