summaryrefslogtreecommitdiff
path: root/games-engines/renpy/files/renpy-8.1.3-system-path.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2024-04-15 12:04:03 +0100
committerV3n3RiX <venerix@koprulu.sector>2024-04-15 12:04:03 +0100
commit7fa8a1e3f149eea4c844c47cfe26136ed7614c58 (patch)
treee514d1b9999d088064bee1e34a3a3c500d6d7a07 /games-engines/renpy/files/renpy-8.1.3-system-path.patch
parentd993571e2ee444d08f4e9e90d493ee37338657e3 (diff)
gentoo auto-resync : 15:04:2024 - 12:04:02
Diffstat (limited to 'games-engines/renpy/files/renpy-8.1.3-system-path.patch')
-rw-r--r--games-engines/renpy/files/renpy-8.1.3-system-path.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/games-engines/renpy/files/renpy-8.1.3-system-path.patch b/games-engines/renpy/files/renpy-8.1.3-system-path.patch
deleted file mode 100644
index c3e3c9beccb8..000000000000
--- a/games-engines/renpy/files/renpy-8.1.3-system-path.patch
+++ /dev/null
@@ -1,19 +0,0 @@
---- a/renpy.py
-+++ b/renpy.py
-@@ -30,6 +30,7 @@ from __future__ import print_function, absolute_import
- import os
- import sys
- import warnings
-+import sysconfig
-
- # Functions to be customized by distributors. ################################
-
-@@ -209,7 +209,7 @@ def path_to_renpy_base():
- Returns the absolute path to thew Ren'Py base directory.
- """
-
-- renpy_base = os.path.dirname(os.path.abspath(__file__))
-+ renpy_base = sysconfig.get_path('platlib')
- renpy_base = os.path.abspath(renpy_base)
-
- return renpy_base