mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: ruby-puma: Do not install mkmf.log file.
* gnu/packages/ruby.scm (ruby-puma) [arguments]: Add delete-mkmf.log phase.
This commit is contained in:
parent
00d84146f3
commit
5c3727ff07
1 changed files with 6 additions and 0 deletions
|
@ -11572,6 +11572,12 @@ (define-public ruby-puma
|
|||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(invoke "bundle" "exec" "rake" "test"))))
|
||||
(add-after 'install 'delete-mkmf.log
|
||||
(lambda _
|
||||
;; Rubygems installs build log files that embed volatile file
|
||||
;; names (see:
|
||||
;; https://github.com/rubygems/rubygems/issues/6259).
|
||||
(for-each delete-file (find-files #$output "^mkmf\\.log$"))))
|
||||
(add-before 'check 'disable-problematic-tests
|
||||
(lambda _
|
||||
(let-syntax ((skip-tests
|
||||
|
|
Loading…
Reference in a new issue