guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

16/16: utils: Make sure to use the right 'bytevector->string'.


From: Ludovic Courtès
Subject: 16/16: utils: Make sure to use the right 'bytevector->string'.
Date: Wed, 8 Mar 2017 17:44:35 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit 7447aa36e16fb77f75df4d3369db9c942615632e
Author: Ludovic Courtès <address@hidden>
Date:   Wed Mar 8 23:39:03 2017 +0100

    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).
---
 guix/utils.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guix/utils.scm b/guix/utils.scm
index 72dc068..2d59ccc 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))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]