diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-09-07 14:34:57 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-09-07 14:34:57 -0400 |
commit | 9ec4233181c9a4cf7716e289f7ca2da322f1300e (patch) | |
tree | 96c840489490ea0409cea2fc6f22088e86ba2d79 /gnu/packages/python.scm | |
parent | d18bddf5d7aa7f99d0cdc7d65a954b879ff962be (diff) |
gnu: pypy: Fix build.
This fixes a regression that was introduced in commit 553c009d741.
* gnu/packages/python.scm (pypy)[phases]{install}: Rename the OUT variable to
#$OUTPUT.
Diffstat (limited to 'gnu/packages/python.scm')
-rw-r--r-- | gnu/packages/python.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 6b571f6d12..edbdf7cfad 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -865,7 +865,7 @@ ease from the desktop to a microcontroller or embedded system.") (substitute* '("lib_pypy/_md5.py" "lib_pypy/_sha1.py") ((shebang-match-python) shebang-pypy3)))) - (copy-recursively dist-dir out))))))) + (copy-recursively dist-dir #$output))))))) (native-inputs (list gzip nss-certs ; For ssl tests |