mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Adjust for python-build-system behavior change.
Commit cb72f9a773
changed the semantics of
SITE-PACKAGES, but did not adjust all callers.
* gnu/packages/bioinformatics.scm (python-pyvcf)[arguments]: Adjust for
missing trailing slash.
* gnu/packages/maths.scm (nomad-optimizer)[arguments]: Likewise.
* gnu/packages/patchutils.scm (patchwork)[arguments]: Likewise.
This commit is contained in:
parent
b507cc49ab
commit
db5646d957
3 changed files with 5 additions and 6 deletions
|
@ -390,7 +390,7 @@ application = get_wsgi_application()\n") port)))))
|
|||
(for-each (lambda (directory)
|
||||
(copy-recursively
|
||||
directory
|
||||
(string-append out-site-packages directory)))
|
||||
(string-append out-site-packages "/" directory)))
|
||||
'(;; Contains the python code
|
||||
"patchwork"
|
||||
;; Contains the templates for the generated HTML
|
||||
|
@ -403,9 +403,9 @@ application = get_wsgi_application()\n") port)))))
|
|||
(install-file file (string-append out "/bin")))
|
||||
(list
|
||||
(string-append out-site-packages
|
||||
"patchwork/bin/parsemail.sh")
|
||||
"/patchwork/bin/parsemail.sh")
|
||||
(string-append out-site-packages
|
||||
"patchwork/bin/parsemail-batch.sh")))
|
||||
"/patchwork/bin/parsemail-batch.sh")))
|
||||
|
||||
;; Collect the static assets, this includes JavaScript, CSS and
|
||||
;; fonts. This is a standard Django process when running a
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue