mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: alpine: Remove pre-built binaries from source.
* gnu/packages/mail.scm (alpine)[source]: Add a snippet to hunt down and destroy pre-compiled objects.
This commit is contained in:
parent
f17bd3c646
commit
bc0eb34759
1 changed files with 7 additions and 1 deletions
|
@ -2748,7 +2748,13 @@ (define-public alpine
|
|||
(commit "abeb2c25935ef8c75f1e5deef0f81276754dc975")))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0rqgbw08a5lj41dkp82aq480lqkc4bnxagna7wpqffi821n8gkwz"))))
|
||||
(base32 "0rqgbw08a5lj41dkp82aq480lqkc4bnxagna7wpqffi821n8gkwz"))
|
||||
(modules '((guix build utils)))
|
||||
(snippet
|
||||
'(begin
|
||||
;; Remove pre-built binaries scattered across the source repository.
|
||||
(for-each delete-file (find-files "." "\\.(dll|exe)"))
|
||||
#t))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:make-flags (list "CC=gcc")
|
||||
|
|
Loading…
Reference in a new issue