Patch taken from Debian sid. Adapted to 4.2.4.6 for Guix by Tobias Geerinckx-Rice . Description: Support uncompressing and compressing soft links. Historically, ncompress for Debian has been built using a command line directly in debian/rules. For 4.2.4.5-1, I simplified by swtching to the upstream Makefile. However, that caused a regression - the Debian version of ncompress has always successfully handled soft links, but this stopped working. To revert to the original behavior, I need to remove -DLSTAT from the build options, to be consistent with how the code was previously built. Author: Kenneth J. Pronovici Bug-Debian: http://bugs.debian.org/918836 Index: ncompress/GNUmakefile =================================================================== --- ncompress.orig/GNUmakefile +++ ncompress/GNUmakefile @@ -9,7 +9,7 @@ distclean: cleanup Makefile: Makefile.def GNUmakefile sed \ - -e 's:options= :options= -DUTIME_H -DLSTAT :' \ + -e 's:options= :options= -DUTIME_H :' \ Makefile.def > Makefile check: x/'>summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2021-06-23build: Makefile splits Scheme compilation in four steps....Fixes <https://bugs.gnu.org/48963>. Reported by Julien Lepiller <julien@lepiller.eu>. This reduces peak memory consumption to something less unreasonable. * Makefile.am (make-go): Depend on 'make-*-go' targets; remove body. (guile-compilation-rule): New function. (MODULES_CORE, MODULES_PACKAGES, MODULES_SYSTEM, MODULES_CLI): New variables. <top level>: Call 'guile-compilation-rule' 4 times. * build-aux/compile-all.scm <top level>: Expect "--total" and "--processed". Take them into account when displaying progress reports. Ludovic Courtès
2021-06-18build: Remove Guile 2.2 workaround....* build-aux/compile-all.scm <top level>: Remove Guile 2.2 workaround. Ludovic Courtès
2020-04-12build: Cap build parallelism on i686....Works around <https://bugs.gnu.org/40522>. * build-aux/compile-all.scm (parallel-job-count*): New procedure. <top level>: Use it instead of 'parallel-job-count'. Ludovic Courtès
2019-06-25build: Report build errors via 'report-load-error'....* build-aux/compile-all.scm: Wrap 'compile-files' call in 'catch'. Attempt to resort to 'report-load-error' in (guix ui) to print the error. Ludovic Courtès
2019-04-19build: Show completion percentage while building....* build-aux/compile-all.scm (%): New procedure. (command-line): Use it to report completion. Ludovic Courtès