mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-05-07 17:55:55 +02: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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user