gnu: js-mathjax: Avoid "Too many open files" error while building.
* gnu/packages/javascript.scm (js-mathjax)[arguments]: Add call to 'close-pipe'. Previously builds would sometimes fail with EMFILE (this was non-deterministic as it depends on GC activity.)
This commit is contained in:
		
							parent
							
								
									9c64080dce
								
							
						
					
					
						commit
						9da2dd90e2
					
				
					 1 changed files with 5 additions and 1 deletions
				
			
		| 
						 | 
					@ -117,7 +117,11 @@
 | 
				
			||||||
                  (let ((minified (open-pipe* OPEN_READ "uglify-js" file)))
 | 
					                  (let ((minified (open-pipe* OPEN_READ "uglify-js" file)))
 | 
				
			||||||
                    (call-with-output-file installed
 | 
					                    (call-with-output-file installed
 | 
				
			||||||
                      (lambda (port)
 | 
					                      (lambda (port)
 | 
				
			||||||
                        (dump-port minified port)))))
 | 
					                        (dump-port minified port)))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                    (let ((exit (close-pipe minified)))
 | 
				
			||||||
 | 
					                      (unless (zero? exit)
 | 
				
			||||||
 | 
					                        (error "dear, uglify-js failed" exit)))))
 | 
				
			||||||
                 (else
 | 
					                 (else
 | 
				
			||||||
                  (install-file file (dirname installed))))))
 | 
					                  (install-file file (dirname installed))))))
 | 
				
			||||||
            (find-files "."))
 | 
					            (find-files "."))
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue