diff options
author | Ludovic Courtès <ludo@gnu.org> | 2018-07-26 18:15:13 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-07-26 18:15:13 +0200 |
commit | ac46a1c8e465df81d661632a273d07443aefa24e (patch) | |
tree | e969b5f54a1d0607dd867a646e557dc1579763e6 /guix/build | |
parent | 3b92441bc16f335b0a8fb2b3f6c660ec7e16df4f (diff) | |
parent | 92526ade57e0bd23ab4025b8532511ef80df5fba (diff) |
Merge branch 'master' into core-updates
Diffstat (limited to 'guix/build')
-rw-r--r-- | guix/build/ruby-build-system.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/build/ruby-build-system.scm b/guix/build/ruby-build-system.scm index a346e9fb8e..3a658e2557 100644 --- a/guix/build/ruby-build-system.scm +++ b/guix/build/ruby-build-system.scm @@ -78,7 +78,8 @@ operation is not deterministic, we replace it with `find`." (when (not (gem-archive? source)) (let ((gemspec (first-gemspec))) (substitute* gemspec - (("`git ls-files`") "`find . -type f |sort`")))) + (("`git ls-files`") "`find . -type f |sort`") + (("`git ls-files -z`") "`find . -type f -print0 |sort -z`")))) #t) (define* (extract-gemspec #:key source #:allow-other-keys) |