diff options
| -rw-r--r-- | guix/profiles.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/guix/profiles.scm b/guix/profiles.scm index 011bc54d23a..d8b83bf7305 100644 --- a/guix/profiles.scm +++ b/guix/profiles.scm | |||
| @@ -1268,8 +1268,11 @@ are cross-built for TARGET." | |||
| 1268 | (guix search-paths) | 1268 | (guix search-paths) |
| 1269 | (srfi srfi-1)) | 1269 | (srfi srfi-1)) |
| 1270 | 1270 | ||
| 1271 | (setvbuf (current-output-port) 'line) | 1271 | ;; Don't complain about _IO* on Guile 2.2. |
| 1272 | (setvbuf (current-error-port) 'line) | 1272 | (debug-disable 'warn-deprecated) |
| 1273 | |||
| 1274 | (setvbuf (current-output-port) _IOLBF) | ||
| 1275 | (setvbuf (current-error-port) _IOLBF) | ||
| 1273 | 1276 | ||
| 1274 | #+(if locales? set-utf8-locale #t) | 1277 | #+(if locales? set-utf8-locale #t) |
| 1275 | 1278 | ||
