mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
build: Fix helpful output for emacs-build-system install phase.
Detecting when no files were installed was broken when switching to use cond. Test with (not (null? ...)) to fix this. * guix/build/emacs-build-system.scm (install): Fix detecting when no files were installed.
This commit is contained in:
parent
5804c7b616
commit
4363767394
1 changed files with 1 additions and 1 deletions
|
@ -131,7 +131,7 @@ (define (match-stripped-file action regex)
|
|||
(target-directory (string-append out %install-suffix "/" elpa-name-ver))
|
||||
(files-to-install (find-files source install-file?)))
|
||||
(cond
|
||||
(files-to-install
|
||||
((not (null? files-to-install))
|
||||
(for-each
|
||||
(lambda (file)
|
||||
(let* ((stripped-file (string-drop file (string-length source)))
|
||||
|
|
Loading…
Reference in a new issue