build-system/gnu: Make the error port line-buffered.
* guix/build/gnu-build-system.scm (gnu-build): Make the error port line-buffered.
This commit is contained in:
		
							parent
							
								
									74baf333bf
								
							
						
					
					
						commit
						c1c94acf32
					
				
					 1 changed files with 1 additions and 0 deletions
				
			
		| 
						 | 
					@ -242,6 +242,7 @@
 | 
				
			||||||
  "Build from SOURCE to OUTPUTS, using INPUTS, and by running all of PHASES
 | 
					  "Build from SOURCE to OUTPUTS, using INPUTS, and by running all of PHASES
 | 
				
			||||||
in order.  Return #t if all the PHASES succeeded, #f otherwise."
 | 
					in order.  Return #t if all the PHASES succeeded, #f otherwise."
 | 
				
			||||||
  (setvbuf (current-output-port) _IOLBF)
 | 
					  (setvbuf (current-output-port) _IOLBF)
 | 
				
			||||||
 | 
					  (setvbuf (current-error-port) _IOLBF)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  ;; The trick is to #:allow-other-keys everywhere, so that each procedure in
 | 
					  ;; The trick is to #:allow-other-keys everywhere, so that each procedure in
 | 
				
			||||||
  ;; PHASES can pick the keyword arguments it's interested in.
 | 
					  ;; PHASES can pick the keyword arguments it's interested in.
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue