Patch adapted from Sage. diff -Naur ecl-16.1.2.orig/src/c/file.d ecl-16.1.2/src/c/file.d --- ecl-16.1.2.orig/src/c/file.d 2016-05-11 13:10:51.867673867 +1200 +++ ecl-16.1.2/src/c/file.d 2016-05-11 14:44:48.121907307 +1200 @@ -3354,8 +3354,10 @@ ecl_disable_interrupts(); do { out = fwrite(c, sizeof(char), n, IO_STREAM_FILE(strm)); - } while (out < n && restartable_io_error(strm, "fwrite")); - ecl_enable_interrupts(); + /* Ignore write errors to stderr to avoid an infinite loop */ + } while (out < n && (IO_STREAM_FILE(strm) != stderr) && restartable_io_error(strm, "fwrite")); + + ecl_enable_interrupts(); return out; } d3c057c4b8'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/services/admin.scm
AgeCommit message (Expand)Author
2020-08-24services: unattended-upgrade: Log output of the 'guix' commands....Ludovic Courtès
2020-08-24services: unattended-upgrade: Add 'operating-system-file' field....Ludovic Courtès
2020-07-27services: Add 'unattended-upgrade-service-type'....Ludovic Courtès
2020-05-06services: rottlog: Append '.gz' to rotated file....Brice Waegeneire
2019-06-15services: Remove unneeded imports that led to cycles....Ludovic Courtès
2018-12-23services: Fix typo in (gnu services admin)....Tobias Geerinckx-Rice
2018-10-04services: rottlog: Use command strings in the mcron jobs....Ludovic Courtès
2018-09-10services: tailon: Move to (gnu services web)....Ludovic Courtès