mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
utils: 'find-files' always returns a proper list.
Reported at <http://bugs.gnu.org/15608>. * guix/build/utils.scm (find-files): Change the 'error' procedure to return RESULT. Before we would end up with an improper list.
This commit is contained in:
parent
8f557fc8b7
commit
f1352766fa
1 changed files with 1 additions and 1 deletions
|
@ -207,7 +207,7 @@ (define file-rx
|
|||
(lambda (file stat errno result)
|
||||
(format (current-error-port) "find-files: ~a: ~a~%"
|
||||
file (strerror errno))
|
||||
#f)
|
||||
result)
|
||||
'()
|
||||
dir)
|
||||
string<?))
|
||||
|
|
Loading…
Reference in a new issue