mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 14:28:15 -05:00
profiles: Avoid _IO* in profile builder.
* guix/profiles.scm (profile-derivation)[builder]: Avoid the deprecated _IO* constants.
This commit is contained in:
parent
350cb5ba84
commit
2f60084f77
1 changed files with 2 additions and 2 deletions
|
@ -1268,8 +1268,8 @@ (define builder
|
||||||
(guix search-paths)
|
(guix search-paths)
|
||||||
(srfi srfi-1))
|
(srfi srfi-1))
|
||||||
|
|
||||||
(setvbuf (current-output-port) _IOLBF)
|
(setvbuf (current-output-port) 'line)
|
||||||
(setvbuf (current-error-port) _IOLBF)
|
(setvbuf (current-error-port) 'line)
|
||||||
|
|
||||||
#+(if locales? set-utf8-locale #t)
|
#+(if locales? set-utf8-locale #t)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue