diff options
| author | Marius Bakke <marius@gnu.org> | 2021-12-04 12:22:11 +0100 |
|---|---|---|
| committer | Marius Bakke <marius@gnu.org> | 2021-12-05 14:02:10 +0100 |
| commit | db5646d957895944007c1bb44fcd998ea392f168 (patch) | |
| tree | e3812e8deec2bbb37e2ec5a065022b2dfbbbb5a7 /gnu/packages/patchutils.scm | |
| parent | b507cc49abb5492f992aff08f0931365bd4ccd4e (diff) | |
gnu: Adjust for python-build-system behavior change.
Commit cb72f9a773e0931ee3758c851d96007ded034e4c 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.
Diffstat (limited to 'gnu/packages/patchutils.scm')
| -rw-r--r-- | gnu/packages/patchutils.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/patchutils.scm b/gnu/packages/patchutils.scm index 3ad795ac5a0..e5a03d4d281 100644 --- a/gnu/packages/patchutils.scm +++ b/gnu/packages/patchutils.scm | |||
| @@ -390,7 +390,7 @@ application = get_wsgi_application()\n") port))))) | |||
| 390 | (for-each (lambda (directory) | 390 | (for-each (lambda (directory) |
| 391 | (copy-recursively | 391 | (copy-recursively |
| 392 | directory | 392 | directory |
| 393 | (string-append out-site-packages directory))) | 393 | (string-append out-site-packages "/" directory))) |
| 394 | '(;; Contains the python code | 394 | '(;; Contains the python code |
| 395 | "patchwork" | 395 | "patchwork" |
| 396 | ;; Contains the templates for the generated HTML | 396 | ;; Contains the templates for the generated HTML |
| @@ -403,9 +403,9 @@ application = get_wsgi_application()\n") port))))) | |||
| 403 | (install-file file (string-append out "/bin"))) | 403 | (install-file file (string-append out "/bin"))) |
| 404 | (list | 404 | (list |
| 405 | (string-append out-site-packages | 405 | (string-append out-site-packages |
| 406 | "patchwork/bin/parsemail.sh") | 406 | "/patchwork/bin/parsemail.sh") |
| 407 | (string-append out-site-packages | 407 | (string-append out-site-packages |
| 408 | "patchwork/bin/parsemail-batch.sh"))) | 408 | "/patchwork/bin/parsemail-batch.sh"))) |
| 409 | 409 | ||
| 410 | ;; Collect the static assets, this includes JavaScript, CSS and | 410 | ;; Collect the static assets, this includes JavaScript, CSS and |
| 411 | ;; fonts. This is a standard Django process when running a | 411 | ;; fonts. This is a standard Django process when running a |
