[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#52595] [PATCH 2/5] gnu: python2-renpy: Do not delete non-existing f
From: |
Liliana Marie Prikler |
Subject: |
[bug#52595] [PATCH 2/5] gnu: python2-renpy: Do not delete non-existing file. |
Date: |
Fri, 17 Dec 2021 19:22:04 +0100 |
* gnu/packages/game-development.scm (python2-renpy)[build]: Don't delete
renpy/__init__.pyc, it is no longer being built. Adjust comment accordingly.
---
gnu/packages/game-development.scm | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/game-development.scm
b/gnu/packages/game-development.scm
index 19d5e71506..fb8744382c 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -1317,9 +1317,8 @@ (define-public python2-renpy
;; named "setup.py".
(with-directory-excursion "module"
(apply (assoc-ref %standard-phases 'build) args))
- ;; the above causes renpy.__init__ to be compiled but does not
- ;; compile anything else, hence we do that here
- (delete-file "renpy/__init__.pyc")
+ ;; The above only builds the cython modules, but nothing else,
+ ;; so we do that here.
(invoke "python" "-m" "compileall" "renpy")
#t))
(replace 'install
--
2.34.0